Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Mathematics
  • Number System and Arithmetic
  • Algebra
  • Trigonometry
  • Statistics
  • Probability
  • Geometry
  • Mensuration
  • Calculus
  • Logarithms
Open In App
Next Article:
Sequences and Series Formulas
Next article icon

Sequences and Series Formulas

Last Updated : 16 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Sequences and Series Formulas: In mathematics, sequence and series are the fundamental concepts of arithmetic. A sequence is also referred to as a progression, which is defined as a successive arrangement of numbers in an order according to some specific rules. A series is formed by adding the elements of a sequence.

Let us consider an example to understand the concept of a sequence and series better. 1, 3, 5, 7, 9 is a sequence with five terms, while its corresponding series is 1 + 3 + 5 + 7 + 9, whose value is 25.

This article explores the sequences and series formulas, including arithmetic, geometric, and harmonic series.

Table of Content

  • Sequence and Series Definition
  • Types of Sequences and Series
    • Arithmetic Sequence and Series
    • Geometric Sequence and Series
    • Harmonic Sequence and Series
    • Fibonacci Numbers
  • Sequences and Series Formulas
  • Difference Between Sequences and Series
  • Sequences and Series Formulas Examples

Sequence and Series Definition

A sequence is defined as a successive arrangement of numbers in an order according to some specific rules. Let x1, x2, x3, x4,... be the terms of a sequence, where 1, 2, 3, 4,... represents the term's position in the given sequence. 

  • Depending upon the number of terms in a sequence, it is classified into two types, namely a finite sequence and an infinite sequence.
  • A series is formed by adding the elements of a sequence. 

If x1, x2, x3, x4, ……. is the given sequence, then its corresponding series is given by  SN = x1+x2+x3 + .. + xN  

  • Depending on whether the sequence is finite or infinite, the series can be either finite or infinite.

Sequence vs Series

 Sequence 

 Series 

A sequence is defined as a successive arrangement of numbers in an order according to some specific rules.A series is formed by adding the elements of a sequence.
 It is basically a grouping of components that follow a certain pattern. It is a sum of elements that follow a pattern.
 In a sequence, the order of the numbers is important.   In a series, the order of numbers is not important. 

 Example: 

A finite arithmetic sequence: 3, 5, 7, 9, 11 

 An infinite geometric sequence: 2, 4, 8, 16, ........  

Example: 

A finite arithmetic series: 3 + 5 + 7 + 9+ 11

An infinite geometric series: 2 + 4 + 8 + 16 + ........ 

Types of Sequences and Series

Sequences and series are classified into different types. Some of the most commonly used examples of sequences and series are:

  • Arithmetic Sequences and Series
  • Geometric Sequences and Series
  • Harmonic Sequences and Series
  • Fibonacci Numbers

Arithmetic Sequence and Series

An Arithmetic sequence is a sequence where each term of the sequence is formed either by adding or subtracting a common term from the preceding number, and the common term is called the common difference. An arithmetic series is referred to as a series developed by using an arithmetic sequence. 

For example,

2, 5, 8, 11, 14,... is an arithmetic sequence with a common difference of 3, and 2 + 5 + 8 + 11 + 14 +... is the corresponding arithmetic series.

Geometric Sequence and Series

A geometric sequence is a sequence where each term of the sequence is formed either by multiplying or dividing a common term with the preceding number, and the common term is called the common ratio.

A geometric series is referred to as a series developed by using a geometric sequence. Depending upon the number of terms in a geometric progression it is classified into two types, namely, finite geometric progression and infinite geometric progression. 

For example,

1, 5, 25, 125, 625,... is a geometric sequence with a common ratio of 5, and 1 + 5 + 25 + 125 + 625 +... is its corresponding geometric series.

Harmonic Sequence and Series

A harmonic sequence is a sequence where each term of the sequence is the reciprocal of the element of an arithmetic sequence. A harmonic series is referred to as a series developed by using a harmonic sequence. 

For example,

2, 5, 8, 11, 14,... is an arithmetic sequence. Now, the harmonic sequence is 1/2, 1/5, 1/8, 1/11, 1/14,... and its corresponding harmonic series is 1/2 + 1/5 + 1/8 + 1/11 + 1/14 +...

Fibonacci Numbers

Fibonacci Numbers are a sequence of numbers where each term of the sequence is formed by adding its preceding two numbers, and the first two terms of the sequence are 0 and 1. 

As the first term, F0, and the second term, F1 of the Fibonacci sequence are 0 and 1, the third term will be, F2 = F1 + F0 = 1 + 0 = 1.

Similarly,

  • The fourth term, F3 = F2 + F1 = 1 + 1 = 2
  • The fifth term, F4 = F3 + F2 =  2 + 1 = 3
  • The sixth term, F5 = F4 + F3 = 3 + 2 = 5

Therefore, the (n+1)th term of the Fibonacci sequence can be expressed as, Fn = Fn-1 + Fn-2. 

The numbers of a Fibonacci sequence are given as: 0, 1, 1, 2, 3, 5, 8, 13, 21, 38, . . .

Sequences and Series Formulas

 

Arithmetic Progression

Geometric Progression

Sequence

a, (a + d), (a+2d), (a + 3d),……….a, ar, ar2,ar3,….

Series

a + (a + d) + (a + 2d) + (a + 3d) +...a + ar + ar2 + ar3 +….

First term

aa

Common Difference or Ratio

Common difference = Successive term – Preceding term

                        => d = a2 – a1

Common ratio = Successive term/Preceding term

                => r = ar(n-1)/ar(n-2)

nth term

a + (n-1)dar(n-1)

Sum of first n terms

Sn = (n/2)[2a + (n-1)d]

Sn = a(1 – rn)/(1 – r) if r < 1


Sn = a(rn -1)/(r – 1) if r > 1

  • The sum of the terms of an infinite geometric series is given by,

Sn = a/(1−r)​

for |r| < 1, and not defined for |r| > 1

Difference Between Sequences and Series

SequencesSeries
Set of elements follow a patternSum of elements of the sequence
Order of elements is importantOrder of elements is not important
Finite sequence: 1,2,3,4,5Finite series: 1+2+3+4+5
Infinite sequence: 1,2,3,4,5……Infinite Series: 1+2+3+4+5+……

Sequences and Series Formulas Examples

Problem 1: Using the sequence and series formula, determine the seventh term of the given geometric sequence: 3, 1, 1/3, 1/9, 1/27, 1/81, ___.

Solution:

Given sequence: 3, 1, 1/3, 1/9, 1/27, 1/81, ___

Now, a = 3, r = 1/3

By using the formula for the nth term of a geometric sequence and series:

an = ar(n-1)

Putting the known values in the formula:

a7 = 3 × (1/3)(7-1)

a7 = 3 × (1/3)6

a7 = (1/3)5 = 1/243

Hence, the seventh term of the given series is 1/243.

Problem 2: Using the sequence and series formula, find the 10th term of the arithmetic sequence 14, 10, 6, 2, -2, -6, ___.

Solution:

Given sequence: 14, 10, 6, 2, -2, -6, ___

Now, a = 14

d = 10 -14 = -4

Using the formula for the nth term of an arithmetic sequence:

an = a+(n-1)d

a10 = 14 + (10 - 1)(-4)

a10 = 14 + (9)(-4)

a10 = 14 - 36 = -22

Hence, the 10th term of the sequence is -22.

Problem 3: If p, q, and r are in A.P., find the value of (q2-pr)/(p - q)2.

Solution:

Given that p, q, and are in A.P

let p, q, and r be a-d, a, a + d.

So, p = a-d, q = a, r = a + d

p - q = a- d - (a + d) = -2d

(p - q)2 = (-2d)2 = 4d2

q2 = a2

p × r = (a - d) (a + d) = (a2 - d2)

q2 - pr = a2 - (a2 - d2) = d2

So, (q2 - pr)/(p - q)2 = d2/4d2 = 1/4

Hence, the value (q2-pr)/(p - q)2 = 1/4.

Problem 4: Find the sum of the infinite geometric series 1, -2/3,  4/9, -8/27, 16/81___.

Solution:

Given sequence: 1, - 2/3,  4/9, -8/27, 16/81___

Now, a = 1,

The common ration of the sequence, r = (-2/3)/1 = -2/3

By using the sequence and series formulas,

Sum of the given series = a/(1 - r)

= 1/(1 - (-2/3))

= 1/(1 + 2/3)

= 1/(5/3) = 3/5

Hence, the sum of the infinite geometric series is 3/5.

Problem 5: Determine the sum of the first 15 terms of the sequence 0.5, 0.55, 0.555,___ up to 15 terms.

Solution:

Given sequence: 0.5, 0.55, 0.555,___up to 15 terms

⇒ 0.5 + 0.55 + 0.555 + 0.5555, ........ up to 15 terms

⇒ 5[0.1 + 0.11 + 0.111 + 0.1111, ........ up to 15 terms]

⇒ (5/9)[0.9 + 0.99 + 0.999 + 0.9999, ...... up to 15 terms]

⇒ (5/9) [(1 - 0.1) + (1 - 0.01) + (1 - 0.001), ...... up to 15 terms]

⇒ (5/9) [(1 + 1 + 1 + 1, ....... up to 15 terms) - (0.1 + 0.01 + 0.001 + 0.0001 + ..... up o 15 terms)]

⇒ (5/9) [15 - (0.1) (1 - (0.1)15)/(1 - 0.1)]

⇒ (5/9) [15 - (0.1)(1 - (0.1)15)/(0.9)]

⇒ (5/9) [15 - (1/9) {1 - (0.1)15}]            as 1 - (0.1)15 = 1 (approx)

⇒ (5/9) (1/9) [134 ]

⇒ 8.27 (approx)

Problem 6: Determine the nth term of the given series: 2, (2 + 4), (2 + 4 + 6), (2 + 4 + 6 + 8),.....

Solution:

Here by observing the sequence,

nth term = (2 + 4 + 6 + 8 + 10 . . . . . . . . . . . .+ 2n)

The nth term is an arithmetic series in itself with first term (a) = 2 and common difference (d) = 2

Now,

Sum of n terms of an Arithmetic progression is (n/2)[2a + (n-1)d]

= (n/2)[2 × 2 + (n-1) × 2]

= (n/2) × 2 [ 2 + (n - 1)]

= n(n+1)

Hence, the nth term of the given series is n(n+1).

Conclusion of Sequence and Series

Sequences and series are fundamental concepts in mathematics, providing a structured way to analyze patterns and summations of numbers. Understanding sequences and series formulas allows us to solve problems involving arithmetic and geometric progressions, calculate sums, and predict future terms. Proficiency in these formulas is essential for tackling complex mathematical challenges in fields such as calculus, algebra, and beyond.


Next Article
Sequences and Series Formulas

K

kiran086472
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Maths MAQ
  • Maths-Formulas
  • Math-Concepts

Similar Reads

    Simplification and Approximation

    Profit and Loss

    Mixtures & Allegations

    Mixture and Alligation - Solved Questions and Answers
    Question 1: From a vessel of 20 liters of pure milk, 1 liter is taken out and replaced with water, so as to keep the volume constant at 20 liters. This process is repeated 5 times. Find the percentage of pure milk left in the vessel after 5 replacements. Solution: Here, we need to apply the formula
    3 min read
    Mixture and Alligation | Set 2
    Question 1: 30 litres of a mixture of milk and water contains 10% of water, the water to be added, to make the water content 25% in the new mixture. Find how many litres water will be added? Solution : Water in the 30 litre of mixture = 30 x 10/100 = 3 litres Milk in the mixture = 30 - 3 = 27 litres
    3 min read

    Simple Interest & Compound Interest

    Simple Interest
    Simple Interest (SI) is a method of calculating the interest charged or earned on a principal amount over a fixed period. It is calculated based solely on the principal amount, which remains unchanged throughout the calculation.Simple Interest is widely used across industries such as banking, financ
    9 min read
    Compound Interest
    Compound Interest is the interest that is calculated against a loan or deposit amount in which interest is calculated for the principal as well as the previous interest earned. Compound interest is used in the banking and finance sectors and is also useful in other sectors. A few of its uses are:Gro
    9 min read
    Time and Work - Aptitude Questions and Answers
    Time and Work is one of the most basic concepts in Quantitative Aptitude, which is tested extensively in government exams. Undoubtedly, having a strong background in this topic can give candidates an upper hand and help them to score well in competitive exams. A candidate needs to be aware of the ba
    13 min read

    Time,Speed,and Distance

    Mensuration and Geometry

    Mensuration in Maths
    Mensuration is a branch of mathematics that deals with measuring geometric figures, including their length, area, volume, and surface area. It provides formulas and techniques for calculating these attributes for 2D (plane) shapes and 3D (solid) objects.Types of Mensuration 2D Mensuration- Deals wit
    4 min read
    Geometry
    Geometry is a branch of mathematics that studies the properties, measurements, and relationships of points, lines, angles, surfaces, and solids. From basic lines and angles to complex structures, it helps us understand the world around us.Geometry for Students and BeginnersThis section covers key br
    2 min read
    Introduction to Geometry
    Geometry is the branch of mathematics that deals with the shapes, angles, dimensions, and sizes of various things that we see in everyday life. It is mainly divided into plane and solid geometry. In plane geometry, 2d shapes such as triangles, squares, rectangles, and circles are studied. Whereas, i
    9 min read
    Coordinate Geometry
    Coordinate geometry is a branch of mathematics that combines algebra and geometry using a coordinate plane. It helps us represent points, lines, and shapes with numbers and equations, making it easier to analyze their positions, distances, and relationships. From plotting points to finding the short
    3 min read

    Ratio & Proportion,Percentage

    Ratios and Percentages
    Ratios and Percentages: Comparing quantities is easy, each of the quantities is defined to a specific standard and then the comparison between them takes place after that. Comparing quantities can be effectively done by bringing them to a certain standard and then comparing them related to that spec
    6 min read
    Ratio and Proportion
    Ratio and Proportion are used for comparison in mathematics. Ratio is a comparison of two quantities while Proportion is a comparison of two ratios. When a fraction a/b is written a:b then it is termed as a ratio b. When two ratios let's say a:b and c:d are equal a:b and c:d are said to be proportio
    8 min read

    Number System

    What is a Number System?
    A number system is a way of writing numbers using specific symbols or digits. It helps us represent numbers mathematically. There are different types of number systems, such as the decimal system, binary system, octal system, and hexadecimal system.Here, we will discuss the types of number systems i
    4 min read
    Number System in Maths
    Number System is a method of representing numbers with the help of a set of symbols and rules; it is a mathematical notation used to represent quantities or values in various forms. The number system allows us to perform arithmetic operations and represent numbers consistently and understandably.The
    14 min read

    Sequence & Series

    Sequences and Series
    A sequence is an ordered list of numbers following a specific rule. Each number in a sequence is called a "term." The order in which terms are arranged is crucial, as each term has a specific position, often denoted as an​, where n indicates the position in the sequence.For example:2, 5, 8, 11, 14,
    10 min read
    Sequences and Series Formulas
    Sequences and Series Formulas: In mathematics, sequence and series are the fundamental concepts of arithmetic. A sequence is also referred to as a progression, which is defined as a successive arrangement of numbers in an order according to some specific rules. A series is formed by adding the eleme
    10 min read
    Special Series in Maths - Sequences and Series | Class 11 Maths
    Special Series: A series can be defined as the sum of all the numbers of the given sequence. The sequences are finite as well as infinite. In the same way, the series can also be finite or infinite. For example, consider a sequence as 1, 3, 5, 7, … Then the series of these terms will be 1 + 3 + 5 +
    10 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences