Take three numbers $x_1$, $x_2$, and $x_3$ and form the successive running averages $x_n = (x_{n-3} + x_{n-2} + x_{n-1})/3$ starting from $x_4$.
What is the limit as $n\to\infty$?
One approach to this problem is to form a Markov chain, as alluded to by this question: Markov chain, successive running average
However, I am wondering how to construct this as a Markov chain? What are the states? What is the transition matrix?
Can you show that the sequence converges? Once you have done that it is easy to find the limit.
Let's write down the recurrence in form $$3x_n=x_{n-1}+x_{n-2}+x_{n-3}$$ And further if we put $n=4,5, \dots $ we get the set of relations \begin{align} 3x_4&=x_3+x_2+x_1\notag\\ 3x_5&=x_4+x_3+x_2\notag\\ 3x_6&=x_5+x_4+x_3\notag\\ \dots&=\dots\notag\\ 3x_{n-2}&=x_{n-3}+x_{n-4}+x_{n-5}\notag\\ 3x_{n-1}&=x_{n-2}+x_{n-3}+x_{n-4}\notag\\ 3x_n&=x_{n-1}+x_{n-2}+x_{n-3}\notag \end{align} Adding these relations we can see that there will be a lot of cancellations from both sides and the final result will be $$3x_n+2x_{n-1}+x_{n-2}=x_1+2x_2+3x_3$$ Letting $n\to\infty $ we can see that the desired limit is $$\frac{x_1+2x_2+3x_3}{6}$$
For showing convergence the best technique is the one mentioned here. The result is easily generalized for the recurrence $$x_n=\frac{1}{k}\sum_{i=1}^{k}x_{n-i}$$ and the limit in this case is $$\frac {2}{k(k+1)}\sum_{i=1}^{k}ix_{i}$$