Given the recurrence relation
$$\begin{aligned} a_{n + 1} &= 2 a_n b_n\\ b_{n + 1} &= a_n^2 + b_n^2 \end{aligned}$$
with initial conditions
$$a_0 = a, \qquad b_0 = b$$
I am trying to come up with a formula for $a_n$ in terms of $a$ and $b$. I could come up with the following
$$\binom{a_{n + 1}}{b_{n + 1}} = \begin{pmatrix}b_n & a_n\\\ a_n & b_n\end{pmatrix} \binom{a_n}{b_n}$$
I'm not sure, how to proceed from here. Any ideas?