Arithmetic or Geometric?
The recursive sequence for: 4,8,16,32,....
What is t(n)= 2 t(n-1)
t(1) = 4
The explicit sequence for: 1,4,7,10...
What is t(n) = 3+ t(n-1)
t(1) = 1
The explicit equation for: 7,17,24,31,...
What is: t(n) = 10n + (-3)
The explicit equation for: 1,6,11,17
What is t(n) = 5n+(-4)