Question 508968
t(n) = 2*t(n-1)+5 and t(1) = 3
Find the next four terms given the recursive definition
t(1) = 3
t(2) = 2*3+5 = 11
t(3) = 2*11+5 = 27
t(4) = 2*27+5 = 59
=======================
Cheers,
Stan H.
============