When answering this linked question, I ended up with a formula where two sequences are mutually recurrent :
$$ \begin{cases} u_0=0, ~~v_0=1\\ \forall n \in \mathbb{N}^*, ~~u_{n+1} = \frac{11}{12}u_n+\frac1{12}v_n\\ \forall n \in \mathbb{N}^*, ~~v_{n+1} = \frac56v_n+\frac16u_n\\ \end{cases} $$
How to compute the explicit formula for this?
Here is what I have found yet (not much):
Let $f$ a function such as
$$ \forall x, y \in \left[0, 1\right], \forall M \in \mathbb{R}^+, ~~f_M(x, y) = \frac1M\left(\left(M-1\right)x+y\right) $$
And we can rewrite our formula as:
$$ \begin{cases} u_{n+1} = f_{12}(u_n, v_n)\\ v_{n+1} = f_6(v_n, u_n)\\ \end{cases} $$
We have similar functions describing how $(u_n)$ and $(v_n)$ behave, but I don't know what to do next. Am I even on the good path? What should I try?