I'm trying to find a solution to the following recurrence:
$$ R_n=A+\frac{2AR_{n-1}}{2A+R_{n-1}} $$
I don't see any simple way to find the solution to this, but WolframAlpha gives the following elegant solution (unfortunately without steps):
$$ R_n=A\left(2-\frac{3}{c_14^{n+1}+1}\right) $$
For some constant $c_1$ I can find setting $R_0$. I tried to linearize it so far without success. Is there some other method I miss here? Thanks in advance.
$$R_n - 2A = \frac{2AR_{n-1}}{2A + R_{n-1}} -A = \frac{AR_{n-1} - 2A^2}{2A + R_{n-1}} = \frac{A(R_{n-1}-2A)}{(R_{n-1}-2A) +4A}$$ $$\implies \frac{1}{R_n - 2A} = \frac{(R_{n-1}-2A) +4A}{A(R_{n-1}-2A)} = \frac{1}{A} + 4\cdot \frac{1}{R_{n-1} - 2A}$$
By denoting $x_n = \frac{1}{R_n - 2A}$, we have:
$$\begin{align} & x_n = 4 x_{n-1} + \frac{1}{A}\\ &\implies \left(x_n + \frac{1}{3A} \right) = 4\left(x_{n-1} +\frac{1}{3A} \right)\\ & \implies \left(x_n + \frac{1}{3A} \right) = 4\left(x_{n-1} +\frac{1}{3A} \right) =...= 4^n \left(x_0 + \frac{1}{3A} \right)\\ & \implies x_n = 4^n \left(x_0 + \frac{1}{3A} \right) - \frac{1}{3A} \tag{1} \end{align}$$
From $(1)$, we deduce easily $R_n$ via this expression
$$\frac{1}{R_n -4A} = 4^n \left(\frac{1}{R_0 -4A} + \frac{1}{3A} \right) - \frac{1}{3A}$$ and $c_1$ must be equal to
$$c_1 = \frac{1}{R_0 -4A} + \frac{1}{3A}$$