Let us define the following sequence:
$$ x_{n + 1} = -4 - \frac{6}{x_n},$$
with first term $x_1 = -4$. This sequence naturally arises in numerical methods of approximations. With simple C++ program I have realised some interesting property:
$$ \frac{1}{n^2} \leq |x_n| \leq n^2,\mbox{ for any } 2 \leq n \leq 10^8. $$
But I am still unable to proof these inequalities or even establish similar ones. May be you know some good ways to work with such a sequences?