A sequence is an ordered list of numbers. The two questions that matter are: what is the nth term, and where — if anywhere — is the sequence heading?
Defining a sequence
A sequence u1,u2,u3,… can be given in two ways.
By a formula for the nth term.un=4n−1 gives 3,7,11,15,… — any term can be written down directly, so u100=399 without computing the 99 before it.
By a recurrence relation, which gives each term in terms of previous ones, plus a starting value.
Recurrence relations
Given u1=3 and un+1=2un+1, find the first four terms.
u1=3u2=2(3)+1=7u3=2(7)+1=15u4=2(15)+1=31
Some recurrences produce periodic sequences. With u1=2 and un+1=1−un1:
u1=2u2=1−21=−1u3=1−(−1)1=21u4=1−211=2
The sequence has period 3, and it repeats forever. Once you spot a period, u100 costs nothing: 100=3(33)+1, so u100=u1=2.
Arithmetic sequences
An arithmetic progression adds a constant common differenced each time:
un=a+(n−1)d
For 3,7,11,15,…: a=3 and d=4, so
un=3+4(n−1)=4n−1
u20=4(20)−1=79
Geometric sequences
A geometric progression multiplies by a constant common ratior:
un=arn−1
For 2,6,18,54,…: a=2 and r=3, so
un=2×3n−1u5=2×81=162
To identify which type a sequence is, test both: is the difference between consecutive terms constant, or the ratio?
Convergence and limits
A sequence converges to L if un gets arbitrarily close to L as n→∞. Otherwise it diverges.
Sequence
Behaviour
un=(21)n
converges to 0
un=2n
diverges to infinity
un=(−1)n
oscillates between −1 and 1; no limit
un=n+23n+1
converges to 3
For a rational expression, divide top and bottom by the highest power of n:
n→∞limn+23n+1=n→∞lim1+n23+n1=13=3
A geometric sequence arn−1 converges exactly when ∣r∣<1, and then its limit is 0. If ∣r∣>1 the terms grow without bound; if r=−1 they oscillate forever.
Proof by induction for sequences
A recurrence plus a conjectured formula is the classic induction question.
Given u1=3 and un+1=2un−1, prove that un=2n+1.
Base case. When n=1: the formula gives 21+1=3, matching u1=3 ✓
Inductive step. Assume uk=2k+1 for some k≥1. Then