Answer:
a(n) = 4*(2)^(n - 1)
Explanation:
The correct version of this formula is a(n) = a(1)*r^(n - 1). Must use the " ^ " symbol to indicate exponentiation, and enclose the "n - 1" inside parentheses.
Here, if 4, 8, 16, 32, ..., then a(1) = 4 and r = 2 (e. g., 16/8 = 2, 32/2 = 16, and so on).
Then the correct formula for this geometric sequence is
a(n) = 4*(2)^(n - 1), where use of the parentheses as indicated is mandatory.