Question 755835
Can you please write the recursive rule that describes the following pattern 2,5,8,11..... UU1= Un= and what would be the explicit rule for the pattern you found
----
1st::: 2
2nd::: 5 = 2+3
3rd::: 8 = 2+2*3
4th::: 11 = 2+3*3
----
a(n) = 2+(n-1)3
=======================
Cheers,
Stan H.