So a few days ago I just kind of messed around with my calculator, when I had an idea about a new continued fraction. I inputted it, and I found that it converged really quickly, and, quite wondrously, converged to the base of the natural logarithm. Then, the day later, I tried computing a similar continued fraction, this time starting with the number 2 instead of 1, without the increment of the numerator by 1.
My first computation My second computation
Interestingly, the second computation converges to EXACTLY the same values, except it's faster in the sense that the first method is delayed by 1 value per time. Does anybody possibly have an intuition / explanation as for why this might be the case? I've looked at the general ways of computing e: the sum of integer factorials and (1+1/n)^n, which I suspect might be more relevant to this.
Your second computation is equal to your first one: $$1 + \frac{2+\frac{3+\frac{4+\frac{5+ \frac{\cdots}{\cdots}}{5}}{4}}{3}}{2} = 1 + \frac{2}{2} + \frac{\frac{3}{3} + \frac{\frac{4}{4} + \frac{\frac{5}{5} + \frac{\frac{6}{6} + \frac{\cdots}{\cdots}}{5}}{4}}{3}}{2} = 2 + \frac{1+\frac{1+\frac{1+\frac{1+ \frac{\cdots}{\cdots}}{5}}{4}}{3}}{2} $$
I hope this is clear.