The recursion formula that accurately shows the sequence of number is 4, 8, 16, 32, 64, ...
Given the following recursive function expressed as;
tn = 2tn-1 and t₁ = 4.
For the second term
t2 = 2t1
t2 = 2(4) = 8
For the third term
t3 =2t2
t3 = 2(8)
t3 = 16
Hence the recursion formula that accurately shows the sequence of number is 4, 8, 16, 32, 64, ...
Learn more on recursive function here: https://brainly.com/question/11316313
#SPJ1