How can I solve a recurrence relation with variable coefficient like the one below:
$$J_{n+1}(x) = \frac{2n}{x}J_{n}(x) - J_{n-1}(x)$$
for simplicity assume $x=1$.
I need to solve this in order to analyse the error trend of $\in_{n+1}(x) = |J_{n+1} - \overline{J}_{n+1}|$ where $J_{n+1}$ is the actual value and $\overline{J}_{n+1}$ is the value computed by a computer with precision error.