My answer is halfway between Did's answer and achille's answer. Both of their answers are very good, but perhaps there are some for whom this exposition is beneficial.
Solving the recursion for $a_{n+1}$ gives the linear fractional transformation
$$
a_{n+1}=\frac{-2a_n-5}{8a_n-16}\tag{1}
$$
One method of dealing with linear fractional transformations is via matrices and homogeneous coordinates:
Identify $\begin{bmatrix}x\\y\end{bmatrix}\simeq\dfrac xy$, and say $\begin{bmatrix}x\\y\end{bmatrix}\simeq\!\!\begin{bmatrix}u\\v\end{bmatrix}$ if $\,\dfrac xy=\dfrac uv$.
Now we can represent a linear fractional transformation as
$$
\begin{bmatrix}a&b\\c&d\end{bmatrix}\begin{bmatrix}x\\1\end{bmatrix}\simeq\dfrac{ax+b}{cx+d}\tag{2}
$$
Note that a diagonal matrix represents real multiplication by the ratio of the diagonal elements. Furthermore, multiplication of a matrix or vector by a scalar does not change the linear fractional transformation or the real number they represent.
Equation $(1)$ says that
$$
\begin{bmatrix}a_{n+1}\\1\end{bmatrix}\simeq\begin{bmatrix}-2&-5\\8&-16\end{bmatrix}\begin{bmatrix}a_n\\1\end{bmatrix}\tag{3}
$$
If we can find an invertible matrix $S$ and a diagonal matrix $D$ so that
$$
\begin{bmatrix}-2&-5\\8&-16\end{bmatrix}=S^{-1}DS\tag{4}
$$
then $(3)$ becomes
$$
S\begin{bmatrix}a_{n+1}\\1\end{bmatrix}\simeq DS\begin{bmatrix}a_n\\1\end{bmatrix}\tag{5}
$$
If we set $b_n\simeq S\begin{bmatrix}a_n\\1\end{bmatrix}$ and let $d$ be the ratio of the diagonal elements of $D$, $(5)$ says
$$
b_n=d^{n-1}b_1\tag{6}
$$
Then we can recover $a_n$ by
$$
a_n\simeq S^{-1}\begin{bmatrix}d^{n-1}b_1\\1\end{bmatrix}\tag{7}
$$
Computing $D$ and $S$:
$$
\begin{bmatrix}-2&-5\\8&-16\end{bmatrix}
=\frac16\begin{bmatrix}1&5\\2&4\end{bmatrix}
\begin{bmatrix}-12&0\\0&-6\end{bmatrix}
\begin{bmatrix}-4&5\\2&-1\end{bmatrix}\tag{8}
$$
Thus, $d=\dfrac{-12}{-6}=2$ and $b_1\simeq S\begin{bmatrix}a_1\\1\end{bmatrix}\simeq\begin{bmatrix}-4&5\\2&-1\end{bmatrix}\begin{bmatrix}1\\1\end{bmatrix}\simeq1$. Therefore,
$$
a_n\simeq S^{-1}\begin{bmatrix}b_n\\1\end{bmatrix}\simeq\begin{bmatrix}1&5\vphantom{1^1}\\2&4\end{bmatrix}\begin{bmatrix}2^{n-1}\\1\end{bmatrix}\simeq\frac{2^{n-1}+5}{2^n+4}\tag{9}
$$