I'll focus on part (a) only.
The first term is 1, and we double each term to get the next term.
- 1*2 = 2
- 2*2 = 4
- 4*2 = 8
- 8*2 = 16
- 16*2 = 32
And so on. The notation
means "the first term is 1". The subscript 1 tells us which term number we're at. Term
is the second term, then
is the third term, etc.
The recursive step could be written as
to mean "the nth term is double of the previous term".
We write the final answer as

The first line is the initial condition. The second line is the recursive step to generate each successive term. If we wanted say the 100th term, then we'd have to generate the previous 99 terms, which would be a lot of tedious work to do by hand.