Skip to content

We have already seen explicit sequences, where the terms are give by a formula. Sometimes, a sequence can be defined instead by doing some operation on the previous terms. So un+1 is given by doing something to un. Such a sequence is called a recursive sequence.

In the next example, we will see how this works.


The sequence un is defined by

u1=5un+1=2un+1
  1. Find u2,u3 and u4

  2. Show that

    u3=4u1+3u4=4u2+3
  3. Prove, in general, that

    un+1=4un−1+3