| A Recursive Sequence |
A sequence u is defined recursively as follows:
u0 = 4 u1 = 7 un+2 = 5un+1 - 6un for all n>=2.
Find the value of ux for all x>=2. Your answer should be a function of x. |
Problem Moderated by: Sasha |
| Problem Solution |
| ux = 5(2x) - 3x |
|
|