Consider following recurrence relation:
$$2\left(\sum_{i = 0}^k I_{n-i}\right) + I_{n-k} = I_{n-k-1}$$ $k = 0 , 1 , \dots , n-1$
Also $I_0 = \frac{V}{R}$. Assuming that $n \ge2$ is a fixed integer, I'm looking for $\frac{I_1}{I_2}$ in terms of $n$. After that I will take the limit as $n \to \infty$. This problem has come up when solving a circuit with infinite number of resistors. I don't know how to tackle this problem. Setting $S(k) =\sum_{i = 0}^k I_{n-i}$ isn't helpful. Also I tried to find a pattern in value of $\frac{I_1}{I_2}$ as $n$ increases but it was so complicated. The first terms are $3, \frac{11}{3} $ and $ \frac{41}{11}$. Using equivalent resistor we find that $\frac{I_1}{I_2} = \sqrt{3} + 2$.
Edit:
Here is the circuit:
I added a voltage source between a-b, so we have $I_0 = \frac{V}{R}$. Assuming there are $n$ blocks, we calculate $\frac{I_1}{I_2}$ and then taking the limit yields the result. According to Cesareo's answer, the answer doesn't depend on $n$. How this is plausible? Increasing $n$ should change the value of $\frac{I_1}{I_2}$.

Hint.
Making
$$ R_{n,k} = 2\sum_{i=0}^{i=k}I_{n-i}+I_{n-k}-I_{n-k-1}=0 $$
we have
$$ R_{n,k}-R_{n,k-1} = I_{n-k+1}-4I_{n-k}+I_{n-k-1}=0 $$
In this recurrence calling $n-k=m$ or
$$ I_{m+1}-4I_{m}+I_{m-1}=0 $$
and this recurrence has the general solution
$$ I_{m} = (2-\sqrt{3})^m C_1+(2+\sqrt{3})^m C_2 $$
now depending on the initial/boundary conditions for the determination of $C_1, C_2$ we have
$$ \frac{I_2}{I_1}=\frac{(2-\sqrt{3})^2 C_1+(2+\sqrt{3})^2 C_2}{(2-\sqrt{3}) C_1+(2+\sqrt{3}) C_2} $$
for instance: if $I_n$ is limited then necessarily $C_2=0$ but if $I_n$ is unlimited then we need $C_1, C_2$
NOTE
Included a MATHEMATICA script for the calculus of $\frac{I_2}{I_1}$ in the ladder resistance circuit included in the OP.