This question was given to me today on a sheet of questions containing 'sum to infinity' questions. There are no hints as to how to solve it. The series is:
$$\frac11 + \frac14+\frac2{16}+\frac3{64}+\frac5{256}+\frac8{1024}+\frac{13}{4096}+\cdots$$
How can I solve it?
I wrote the following piece of code to empirically find the answer:
n1 = 0
n2 = 1
total = 0
for i in range(1, 100):
nth = n1 + n2
n1 = n2
n2 = nth
total += (nth/(4**i))
total += 1
print(total)
The program returns the answer $\frac{16}{11}$, this doesn't match the findings of some users.