Define the sequence $\{a_n\}$ where $n \in \mathbb{Z^+}$ given by $a_1 = \frac{1}{3}$ and $$ a_{n + 1} = a_n^2 + a_n.$$ Let $$\text{S} = \sum_{i = 2}^{2008}{\frac{1}{a_i}},$$ then find $\lfloor S \rfloor$ where $\lfloor X \rfloor$ denotes the greatest integer lesser than or equal to $X$.
P.S.: The obvious approach would be to telescope, but as far as I can see, terms do not cancel at all and the estimation of S becomes cumbersome. I have also tried modifying it by adding $\frac{1}{4}$ to both sides and defining $b_n = a_n + \frac{1}{2}$ gives us $$b_{n + 1} = b_n^2 + \frac{1}{4}$$ but this doesn't help me in any way to estimate S. One can read off that the original sequence is increasing but i am unable to put an upper bound (such as a G.P.) to find [S].
The answer is $5$.
Much thanks to @JohnBentin for pointing out the embarrassing flaw in my previous solution.
We may easily calculate the values of $a_2,a_3$ and $a_4$ by hand, and this gives us $\frac{4}{9}, \frac{52}{81}$ and $ \frac{6916}{6561} > 1$ respectively. Since all the terms in $\{a_n\}$ are positive, $a_{n+1}=a^2_n+a_n>a_n$, so the sequence is strictly increasing, which immediately allows us to conclude that $∀ \ n≥4, a_n>1$.
Claim: $\forall \ n \geq 4,\frac{1}{a_n}-\frac{1}{a_{n}+1} < \frac{1}{a_n}-\frac{1}{a_{n+1}} $.
Proof: Equivalently, we show that $a_{n+1}>a_n+1$. But $a_{n+1}=a_{n}(a_{n}+1)>a_{n}+1$, since $a_n>1 \ \forall \ n \geq 4$, which concludes our proof.
Now, $$S=\sum_{i=2}^{2008}\frac{1}{a_i}=\sum_{k=1}^{2007}\frac{1}{a_{k+1}}$$ Here, we carry out the substitution $i=k+1$.
Thus, $$S=\sum_{k=1}^{2007}\frac{1}{a_{k+1}}=\sum_{k=1}^{2007}\frac{1}{a_k(a_{k}+1)}=\sum_{k=1}^{2007}\left(\frac{1}{a_{k}}-\frac{1}{a_k+1}\right)$$
Next, we derive both a lower and upper bound for $S$.
Lower Bound:
$$S=\left(\frac{1}{a_1}-\frac{1}{a_1+1}\right)+\left(\frac{1}{a_2}-\frac{1}{a_2+1}\right)+\left(\frac{1}{a_3}-\frac{1}{a_3+1}\right)+\left(\frac{1}{a_4}-\frac{1}{a_4+1}\right) + ... + \left(\frac{1}{a_{2007}}-\frac{1}{a_{2007}+1}\right) $$
$$> \left(\frac{1}{a_1}-\frac{1}{a_1+1}\right)+\left(\frac{1}{a_2}-\frac{1}{a_2+1}\right)+\left(\frac{1}{a_3}-\frac{1}{a_3+1}\right)+\left(\frac{1}{a_4}-\frac{1}{a_4+1}\right)+\left(\frac{1}{a_5}-\frac{1}{a_5}\right)+\left(\frac{1}{a_6}-\frac{1}{a_6}\right)+...+\left(\frac{1}{a_{2007}}-\frac{1}{a_{2007}}\right)$$
$$=\left(\frac{1}{a_1}-\frac{1}{a_1+1}\right)+\left(\frac{1}{a_2}-\frac{1}{a_2+1}\right)+\left(\frac{1}{a_3}-\frac{1}{a_3+1}\right)+\left(\frac{1}{a_4}-\frac{1}{a_4+1}\right) \approx 5.22 > 5 $$
Upper Bound: This is where we make use of the above stated claim, and employ the trick of using a telescoping series.
$$S < \left(\frac{1}{a_1}-\frac{1}{a_1+1}\right)+\left(\frac{1}{a_2}-\frac{1}{a_2+1}\right)+\left(\frac{1}{a_3}-\frac{1}{a_3+1}\right)+\left(\frac{1}{a_4}-\frac{1}{a_5}\right)+\left(\frac{1}{a_5}-\frac{1}{a_6}\right)+\left(\frac{1}{a_6}-\frac{1}{a_7}\right)+...+\left(\frac{1}{a_{2007}}-\frac{1}{a_{2008}}\right)$$
$$=\left(\frac{1}{a_1}-\frac{1}{a_1+1}\right)+\left(\frac{1}{a_2}-\frac{1}{a_2+1}\right)+\left(\frac{1}{a_3}-\frac{1}{a_3+1}\right)+\frac{1}{a_4}-\frac{1}{a_{2008}}$$
$$< 5.82-\frac{1}{a_{2008}} < 6 $$
Finally, combining the above, we conclude that $S$ is strictly in-between $5$ to $6$, i.e. $\lfloor S \rfloor =5$, and we are done.