I have three equations with three sequences, $a_n, b_n, c_n$. I tried to isolate $a_n$ with no luck.
$$a_n = 2b_{n-1}+c_{n-1}$$ $$b_n=2a_{n-1}+2b_{n-1}+c_{n-1}$$ $$c_n = 4a_{n-1}+4b_{n-1}$$
Is it even possible to get an expression based only on $a_n$ terms here?
Notice that the expression $2b_{n-1}+c_{n-1}$, which is equal to $a_n$, appears in the expression for $b_n$. So we can rewrite that as $$b_n = 2a_{n-1}+a_n$$ Thus $$c_n = 4a_{n-1} + 4b_{n-1} = 4a_{n-1} + 8a_{n-2} + 4a_{n-1} = 8a_{n-1} + 8a_{n-2}$$ And, finally, $$a_n = 2b_{n-1}+c_{n-1} = 4a_{n-2} + 2a_{n-1} + 8a_{n-2} + 8a_{n-3} = 2a_{n-1} + 12a_{n-2} + 8a_{n-3}$$