Apply the recurrence with n=1
u3=2+1=3 Each new term is built from the terms immediately before it.
Apply the recurrence with n=2
u4=3+2=5 Each new term is built from the terms immediately before it.
Apply the recurrence with n=3
u5=5+3=8 Each new term is built from the terms immediately before it.
Apply the recurrence with n=4
u6=8+5=13 Each new term is built from the terms immediately before it.
Apply the recurrence with n=5
u7=13+8=21 Each new term is built from the terms immediately before it.
Apply the recurrence with n=6
u8=21+13=34 Each new term is built from the terms immediately before it.
Apply the recurrence with n=7
u9=34+21=55 Each new term is built from the terms immediately before it.
Apply the recurrence with n=8
u10=55+34=89 Each new term is built from the terms immediately before it.
Apply the recurrence with n=9
u11=89+55=144 Each new term is built from the terms immediately before it.
Apply the recurrence with n=10
u12=144+89=233 Each new term is built from the terms immediately before it.
Apply the recurrence with n=11
u13=233+144=377 Each new term is built from the terms immediately before it.
Apply the recurrence with n=12
u14=377+233=610 Each new term is built from the terms immediately before it.
Apply the recurrence with n=13
u15=610+377=987 Each new term is built from the terms immediately before it.
List the terms found so far
u1=1,u2=2,u3=3,u4=5,u5=8 Writing the terms in a row makes a slip easy to spot.
Note that no closed form is needed
u15 follows from 13 applications of the recurrence For a small index, iterating is quicker than solving the recurrence.
State the required term
u15=987 This is the value asked for.