An arithmetic sequence adds the same fixed value to each term to produce the next. That fixed value — the common difference — determines everything: whether the sequence rises or falls, how fast it grows, and what its partial sums look like. Arithmetic sequences are the simplest infinite pattern, and their summation formula is one of the oldest results in mathematics.
Definition
An arithmetic sequence is a sequence in which consecutive terms differ by a constant d, called the common difference:
an+1−an=dfor all n
Starting from a first term a1, the sequence unfolds as a1,a1+d,a1+2d,a1+3d,…. The general term is:
an=a1+(n−1)d
The common difference d can be any real number. When d>0, the sequence increases: 3,7,11,15,… has d=4. When d<0, it decreases: 20,17,14,11,… has d=−3. When d=0, every term equals a1 — a constant sequence, which is arithmetic in the trivial sense.
The explicit formula an=a1+(n−1)d has the same structure as a linear function f(x)=mx+b: the common difference d plays the role of slope, and the sequence's terms lie on a straight line when plotted against their indices.
Identifying Arithmetic Sequences
To determine whether a given sequence is arithmetic, compute the differences between consecutive terms. If every difference equals the same value, the sequence is arithmetic and that value is d.
The sequence 5,12,19,26,33 has differences 7,7,7,7. All equal, so it is arithmetic with d=7.
The sequence 1,4,9,16,25 has differences 3,5,7,9. These are not constant, so the sequence is not arithmetic. (It is the sequence of perfect square numbers, which grows quadratically rather than linearly.)
The test applies to any number of terms: compute all consecutive differences and check for uniformity. A single pair of unequal differences is enough to disqualify. Conversely, if only a few terms are given, the test cannot confirm an arithmetic pattern with certainty — the sequence 2,4,6 could continue as 8,10,… (arithmetic) or as 10,16,… (something else). The rule generating the sequence, not just a finite sample, is what determines its type.
Finding Terms
The explicit formula an=a1+(n−1)d contains four quantities: an, a1, n, and d. Given any three, the fourth can be found by solving the equation.
Finding a specific term: if a1=4 and d=6, then a20=4+19⋅6=118.
Finding the common difference: if a1=3 and a8=24, then 24=3+7d, so d=3.
Finding the first term: if a12=50 and d=4, then 50=a1+11⋅4, so a1=6.
Finding the position of a term: if a1=7, d=5, and some term equals 52, then 52=7+(n−1)⋅5, so n−1=9 and n=10. The value 52 is the 10th term. If the equation yields a non-integer n, the value does not appear in the sequence.
When two non-consecutive terms are given — say a3=11 and a9=35 — write both in terms of a1 and d: a1+2d=11 and a1+8d=35. Subtracting gives 6d=24, so d=4, and back-substituting gives a1=3.
Recursive Formula
The recursive definition of an arithmetic sequence specifies a starting value and a rule for getting from one term to the next:
a1=c,an=an−1+d
Each term is built from the immediately preceding term by adding d. This formulation makes the constant-difference structure explicit but requires computing all earlier terms to reach a later one.
Converting from recursive to explicit: if a1=c and an=an−1+d, then after applying the rule n−1 times, an=c+(n−1)d. The explicit formula is a direct consequence of adding d repeatedly.
Converting from explicit to recursive: given an=a1+(n−1)d, observe that an−an−1=d, which gives the recursive rule an=an−1+d with initial value a1.
Both representations define the same sequence. The explicit form is better for computing isolated terms; the recursive form is better for understanding the building process and connects naturally to the idea of sequences defined by recurrence.
Arithmetic Series
The sum of the first n terms of an arithmetic sequence is called an arithmetic series, denoted Sn:
Sn=a1+a2+a3+⋯+an
The closed-form formula is:
Sn=2n(a1+an)
The derivation is straightforward. Write the sum forwards and backwards:
Sn=a1+(a1+d)+(a1+2d)+⋯+an
Sn=an+(an−d)+(an−2d)+⋯+a1
Adding these two expressions term by term, every pair sums to a1+an, and there are n such pairs:
2Sn=n(a1+an)
Dividing by 2 gives the result. An equivalent form replaces an with a1+(n−1)d:
Sn=2n(2a1+(n−1)d)
This version is useful when an is not known directly.
The sum of the first 100 natural numbers, famously attributed to the young Gauss: a1=1, a100=100, so S100=2100(1+100)=5050.
Arithmetic Mean
The arithmetic mean of two numbers a and b is:
M=2a+b
In an arithmetic sequence, every term (except the first and last) is the arithmetic mean of its two neighbors:
an=2an−1+an+1
This follows directly from the constant-difference property: since an−an−1=an+1−an=d, adding the neighbors gives an−1+an+1=2an.
Inserting arithmetic means between two values is the reverse problem: given endpoints a and b, place k terms between them so that the resulting k+2 values form an arithmetic sequence. The common difference must be d=k+1b−a, and the inserted terms are a+d,a+2d,…,a+kd.
For example, inserting 3 arithmetic means between 5 and 25 requires d=425−5=5, producing the sequence 5,10,15,20,25.