Let $x_0 = y_0 = 1$ and for $n \ge 1$
$x_n = 3x_{n - 1} + 4y_{n - 1}, \\ y_n = 2x_{n - 1} + 3y_{n - 1}.$
Goal. Determine an explicit formula for $x_n$ or $y_n$ just depending on $n$.
Background. These recurrences araise from Pell's equation $x^2 - 2y^2 = -1$. Thus, if we consider
$\displaystyle \left(1 + \sqrt{2}\right)^{2n - 1} = \sum_{k = 0}^{2n - 1} \binom{2n - 1}{k} \left(\sqrt{2}\right)^k$
as an element of $\mathbb{Q}(\sqrt{2})$, it has the form $x_n + y_n\sqrt{2}$. Just from computations, I observed that the quotient $x_{n} / x_{n - 1}$ approaches $5.8284...$ as $n \rightarrow \infty$.
Observe that $$ \begin{pmatrix}x_n\\ y_n\end{pmatrix}=A\begin{pmatrix}x_{n-1}\\ y_{n-1}\end{pmatrix},\text{ where }A=\begin{pmatrix}3&4\\ 2&3\end{pmatrix}. $$ Then $$ \begin{pmatrix}x_n\\ y_n\end{pmatrix}=A^n\begin{pmatrix}1\\ 1\end{pmatrix}. $$ The matrix $A$ has two different eigenvalues $\lambda_\pm=1\pm\sqrt2$, is diagonalizable, $$ A=T\begin{pmatrix}\lambda_+&0\\ 0&\lambda_-\end{pmatrix}T^{-1} $$ for an invertible matrix $T$ and $$ \begin{pmatrix}x_n\\ y_n\end{pmatrix}=T\begin{pmatrix}\lambda_+^n&0\\ 0&\lambda_-^n\end{pmatrix}T^{-1}\begin{pmatrix}1\\ 1\end{pmatrix}. $$ All is left is to compute $T$.