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?
This is not an answer, but I would like to give a possible track by showing that a linear algebra approach is fruitful.
Let $x_n=\dfrac{N_n}{D_n}$ (numerators and denominators). The given relationship can thus be written under the form:
$$\dfrac{N_{n+1}}{D_{n+1}}=\dfrac{-4N_n-6D_n}{N_n}$$
i.e. under a matrix form:
$$\begin{pmatrix}N_{n+1}\\D_{n+1}\end{pmatrix}=\underbrace{\begin{pmatrix}-4&-6\\ \ \ 1& \ \ 0\end{pmatrix}}_{M}\begin{pmatrix}N_n\\D_n\end{pmatrix}$$
The existence of a (real valued !) fixed point is clearly equivalent to the existence of a (real valued) eigenvector for $M$. But this is not possible because the two eigenvalues of matrix $M$ are complex : $-2\pm \sqrt{2}i$.
Diagonalizing matrix $M$ and taking it at the power $n$ gives the general formula that one finds in the answer of @Claude Leibovici.