Given the sequence 1 3 7 13 21 provide a 1 recursive definit
Given the sequence 1, 3, 7, 13, 21... provide a:
1) recursive definition and
2) explicit definition (in terms of n)
Solution
Explicit definition = It gives the value of a specified term based on its position.
Recursive definition = It gives the value of a specified term based on the previous term.
now,
(1)
T1 = 1
T2 = 3
T3 = 7
T4 = 13
T5 = 21
T6 = 31
T2 - T1 = 2 => U1
T3 - T2 = 4 => U2
T4 - T3 = 6 => U3
T5 - T4 = 8 => U4
T6 - T5 = 10 => U5
U2 - U2 = 2
U3 - U2 = 2
U4 - U3 = 2
U5 - U4 = 2
So,
Un -Un-1 = 2
Un-1 = Tn - Tn-1
Un = Tn+1 - Tn
 
 Un - Un-1 = Tn+1 - Tn - Tn + Tn-1 = 2
Tn+1 - 2Tn + Tn-1 = 2
Tn+1 = 2 + 2Tn - Tn-1
(2)
One way of looking at the sequence is to say that the difference between successive numbers increases by two.
The general term in the sequence is given by
tn = n2 - n + 1 for n = 1,2,3,...
or, equivalently, tn = (n3 + 1)/(n+1)


