Hi Christina :-) Between two consecutive terms, you have a number that's increasing by 2 each time, starting with 3. So between two terms, you really have each time the next consecutive odd number (3, 5, 7, 9, etc.). The recurrence relation would be:
u(0) = -2
u(n) = u(n - 1) + (2 n + 1)
To get to an explicit expression, we therefore need to add odd numbers together. The sum of the k first odd numbers is k2 but in this case we skip 1 and start with 3. So the direct expression would be:
u(n) = (n + 1)2 - 3
I hope that makes sense.
Emmanuel C.
01/12/21