Alexis,
For a recursive formula, each next value in a sequence will depend on a prior value. In this case, it's the exact value immediately prior to the next, 2an-1 means multiply 2 times an-1 where a is a sequence value and n-1 tells where it's located. So if we look at the 3rd value in the sequence, 20... we got 20 by multiplying the 2nd value in the sequence, 10, by 2 (10 is immediately prior to 20 in the sequence), and if we look at the 5th value in this sequence, 80, we got 80 by multiplying the 4th value in the sequence, 40, by 2 (40 is immediately prior to 80 in the sequence)
So an = 2an-1 is our recursive formula but now we have to decide what a1 is, which is actually asking what is the very 1st value given in our sequence?
Our first value in the given sequence is 5, so a1 = 5.
Hope this helps!