Answer:
A
Explanation:
The recursive rule lets us find a term in the sequence from the previous term.
The sequence of dots is
4 , 16, 64
Thus multiplying the previous term by 4 gives the required term, thus
f(x) = f(x - 1) × 4 : f(1) = 4
so
f(2) = f(1) × 4 = 4 × 4 = 16 ← true
f(3) = f(2) × 4 = 16 × 4 = 64 ← true
A is the correct choice