Write out the first 4 terms of the following sequence that is define recursively.

a1=32
ak+1=1/2ak

1 answer

well, just plug and chug

a1 = 32
a2 = 1/2 (32) = 16
a3 = 1/2 (16) = 8
...