[Math] Find a limit of the recursive sequence

cauchy-sequenceslimitssequences-and-series

The task is to prove sequence convergence and find a limit.
$x_0=0$
$x_1=1$
$x_{n+1}=\frac {x_n + n \cdot x_{n-1}} {n+1}$

I have computed some values of a sequence to build up some idea of the data:
elements with even indexes converge from 0 to ~0.68, and elements with odd indexes converge from 1 to the same value.

It's obvious that the sequence isn't monotonic, hence I had to stick with a Cauchy theorem. But it led me nowhere:
$|x_{n+p}-x_{n}| < | \frac {n \cdot x_{n-1}} {n + 1} + 2 \cdot \sum_{i=n}^{2n-2} x_i + { \frac {x_{2n-1}} {2n} } |$
(I got there under the assumption that $n = p$.)

Then I tried another move:
$x_{n+1} – x_{n} = \frac {x_n + n \cdot x_{n-1}} {n+1} – x_n = $
$= \frac {-n \cdot ( x_n – x_{n-1})} {n+1}$
$x_{n} – x_{n-1} = \frac {(1-n) \cdot (x_{n-1} – x_{n-2})} {n}$

It looks like progress, but I still don't know how to go next.

Best Answer

You're on the right track. If you write $d_n=x_{n+1}-x_n$, you have $d_n=-\frac n{n+1}d_{n-1}$

So $d_n=(-\frac n{n+1})(-\frac {n-1}{n})(-\frac {n-2}{n-1})\ldots\frac12d_0=\frac{(-1)^n}{n+1}d_0=\frac{(-1)^n}{n+1}$

Then $x_n=x_0+\sum\limits_{k=0}^{n-1}d_k=\sum\limits_{k=0}^{n-1}d_k$

And $\lim\limits_{n\to\infty}x_n=\sum\limits_{n=0}^\infty d_n=\sum\limits_{n=0}^\infty \frac{(-1)^n}{n+1}$ which is a well known expansion of $\log 2$.

Related Question