I'm trying to understand if my approach for solving a recurrence relation is flawed, here I give an example.
Given a recurrence relation $r_n = a + b_n r_{n+1}$,
If we're given an initial condition of $r_0 = c_0$ this can be solved allowing us to calculate $r_n$ in closed form, not depending on $r_{n-1}$.
What if we are instead given an initial condition $r_n = c_n$, and I am interested in knowing the first term $r_0$? I can calculate this by working backwards from $r_n$, but is it possible to find a closed form for $r_0$?