Salick Academy

A sequence is an ordered list of numbers. The two questions that matter are: what is the nnth term, and where — if anywhere — is the sequence heading?

Defining a sequence

A sequence u1,u2,u3,u_1, u_2, u_3, \ldots can be given in two ways.

By a formula for the nnth term. un=4n1u_n = 4n - 1 gives 3,7,11,15,3, 7, 11, 15, \ldots — any term can be written down directly, so u100=399u_{100} = 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=3u_1 = 3 and un+1=2un+1u_{n+1} = 2u_n + 1, find the first four terms.

u1=3u_1 = 3 u2=2(3)+1=7u_2 = 2(3) + 1 = 7 u3=2(7)+1=15u_3 = 2(7) + 1 = 15 u4=2(15)+1=31u_4 = 2(15) + 1 = 31

Some recurrences produce periodic sequences. With u1=2u_1 = 2 and un+1=11unu_{n+1} = \dfrac{1}{1 - u_n}:

u1=2u2=112=1u3=11(1)=12u4=1112=2u_1 = 2 \qquad u_2 = \frac{1}{1-2} = -1 \qquad u_3 = \frac{1}{1-(-1)} = \frac12 \qquad u_4 = \frac{1}{1-\frac12} = 2

The sequence has period 3, and it repeats forever. Once you spot a period, u100u_{100} costs nothing: 100=3(33)+1100 = 3(33) + 1, so u100=u1=2u_{100} = u_1 = 2.

Arithmetic sequences

An arithmetic progression adds a constant common difference dd each time:

un=a+(n1)du_n = a + (n-1)d

For 3,7,11,15,3, 7, 11, 15, \ldots: a=3a = 3 and d=4d = 4, so

un=3+4(n1)=4n1u_n = 3 + 4(n-1) = 4n - 1

u20=4(20)1=79u_{20} = 4(20) - 1 = 79

Geometric sequences

A geometric progression multiplies by a constant common ratio rr:

un=arn1u_n = ar^{n-1}

For 2,6,18,54,2, 6, 18, 54, \ldots: a=2a = 2 and r=3r = 3, so

un=2×3n1u5=2×81=162u_n = 2 \times 3^{n-1} \qquad u_5 = 2 \times 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 LL if unu_n gets arbitrarily close to LL as nn \to \infty. Otherwise it diverges.

Sequence Behaviour
un=(12)nu_n = \left(\frac12\right)^n converges to 00
un=2nu_n = 2^n diverges to infinity
un=(1)nu_n = (-1)^n oscillates between 1-1 and 11; no limit
un=3n+1n+2u_n = \frac{3n+1}{n+2} converges to 33

For a rational expression, divide top and bottom by the highest power of nn:

limn3n+1n+2=limn3+1n1+2n=31=3\lim_{n\to\infty}\frac{3n+1}{n+2} = \lim_{n\to\infty}\frac{3 + \frac1n}{1 + \frac2n} = \frac{3}{1} = 3

A geometric sequence arn1ar^{n-1} converges exactly when r<1|r| < 1, and then its limit is 0. If r>1|r| > 1 the terms grow without bound; if r=1r = -1 they oscillate forever.

Proof by induction for sequences

A recurrence plus a conjectured formula is the classic induction question.

Given u1=3u_1 = 3 and un+1=2un1u_{n+1} = 2u_n - 1, prove that un=2n+1u_n = 2^n + 1.

Base case. When n=1n = 1: the formula gives 21+1=32^1 + 1 = 3, matching u1=3u_1 = 3

Inductive step. Assume uk=2k+1u_k = 2^k + 1 for some k1k \ge 1. Then

uk+1=2uk1=2(2k+1)1=2k+1+21=2k+1+1u_{k+1} = 2u_k - 1 = 2\left(2^k + 1\right) - 1 = 2^{k+1} + 2 - 1 = 2^{k+1} + 1

which is the formula with n=k+1n = k+1

Conclusion. By induction, un=2n+1u_n = 2^n + 1 for all n1n \ge 1. \blacksquare