Given the recurrence
$\begin{cases} F_n = 2F_{n-1}^2 H_{n-1} \\H_n = 2F_{n-1} H_{n-1}^2 \end{cases} \text{ for }n\geq 3$
and $F_2 = 1$, $H_2 = 3$.
How can I find an explicit expression for $F_n$?
My approach so far was applying the logarithm, writing it in matrix/vector form an use linear algebra (via eigenvalue/eigenvectors). Then I got the result $$F_n = 3^{\frac{3^{n-2}-1}{2}} + 2^{\frac{3^{n-2}-1}{2}}.$$
Are there easier methods for solving this recurrence relation? I think one should be able to use the symmetry of $F_n$ and $H_n$.