Consider the sequence of random variables where $X_0=0$ and $X_{n+1}$ is an integer selected uniformly from $[0,X_n+1]$. Equivalently, $(X_n)$ is a Markov chain with the $0$-indexed transition matrix $$P=\begin{bmatrix} \frac12 & \frac12 & 0 & 0 &0&\ldots\\ \frac13 & \frac13 & \frac13 & 0 & 0 & \ldots\\ \frac14 & \frac14 & \frac14 & \frac14& 0 & \ldots\\ \vdots & \vdots & \vdots & \vdots& \vdots & \ddots \end{bmatrix}.$$ Calculations indicate a Poisson limiting distribution: $$X_n\overset{d}{\rightarrow}\text{Pois(1)}$$ How can we prove this?
By looking at which states can reach state $m$, we have $$P(X_n=m) =\sum_{k\geq m}\frac{P(X_{n-1}=k-1)}{k+1}$$ and $$P(X_n=m) =\sum_{0\leq k_{i+1}\leq k_i+1\\ k_0=0,\ k_n=m}\prod_i\frac{1}{k_i+1}$$ But I'm not really sure what to do with this. I though of likening it to a binomial distribution so that I could use the Poisson limit theorem, but I couldn't get anywhere.