Let the sequence $F$ be defined as: $F_1=F_2=1$ and $F_n=2F_{n-1}+F_{n-2}$, for $n>2$. Evaluate $\sum_{n=1}^{\infty}\frac{F_n}{10^n}$.
The obvious solution involves solving for the explicit formula for $F$ (using the standard linear recurrence technique): $F_n=(\frac{\sqrt{2}-1}{2})(1+\sqrt{2})^n-(\frac{\sqrt{2}+1}{2})(1-\sqrt{2})^n$. Then we can just split the sum into two infinite geometric series. The computation is annoying, but nonetheless straightforward.
I was wondering if there is any easier solution than solving for an explicit formula for $F$. Maybe there is one that only needs the recursive definition? Any comments are appreciated.
Define $S=\sum_{n=1}^{\infty}{{F_n}\over{10^n}}$.
For proving that $S$ exists, note that $F_n$ is strictly increasing since $F_1,F_2>0$. Therefore we can obtain that $F_n=2F_{n-1}+F_{n-2}\le 3F_{n-1}$. Now define $b_n={{F_n}\over{10^n}}$ thus we get here: $${{b_{n+1}}\over{b_n}}={{F_{n+1}}\over{10F_n}}\le0.3<1$$ which implies on convergence according to d'Alembert's ratio test
After proving convergence we have: $$ \begin{split} S &= {1\over 10} + {1\over 100} + \sum_{n=3}^{\infty}{F_n\over{10^n}}\\ &= {1\over 10} + {1\over 100} + \sum_{n=3}^{\infty}{{F_{n-2}+2F_{n-1}}\over{10^n}}\\ &= {11\over 100} + \sum_{n=1}^{\infty}{{F_n}\over{10^{n+2}}} + \sum_{n=2}^{\infty}{{F_n}\over{10^{n+1}}}\\ &= {11\over 100}+{S\over 100}+{2S\over 10}-{2\over 100}\\ &={{21S+9}\over 100} \implies S={9\over 79} \end{split} $$