Can someone give some hints on how to evaluate this sum:
$$\sum_{n=0}^\infty \binom{2n+2}{n}\left(\frac{2}{3}\right)^n\left(\frac{1}{3}\right)^{n+2}$$
I came across this sum when I was solving a probability problem.
Can someone give some hints on how to evaluate this sum:
$$\sum_{n=0}^\infty \binom{2n+2}{n}\left(\frac{2}{3}\right)^n\left(\frac{1}{3}\right)^{n+2}$$
I came across this sum when I was solving a probability problem.
Looks like the expected number of visits to state $-2$, starting from state $0$, in a random walk on $\{-2,-1,0,\dots\}$ with the following transition probabilities. At state $-2$, you go to state $0$ with probability $1$; otherwise, you go up one unit with probability $2/3$ and down one unit with probability $1/3$. Let $v_i$ be this expectation, given that you start at state $i$. By first-step analysis (conditioning on the first step out of state $i$), we have $v_{-2}=1+v_0$ and $$v_i = \frac{2}{3}v_{i+1} + \frac{1}{3}v_{i-1} \quad \text{for $i > -2$}$$ Now solve this recurrence, and you will find that $v_0=3/4$.
From the generating function for the central binomial coefficients we get:
$$\sum_{n=0}^{\infty}\binom{2(n+1)}{n+1}x^{n+1}=\frac{1}{\sqrt{1-4x}}-1=f(x)$$
Now, $$\binom{2n+2}{n}=\left(1-\frac{1}{n+2}\right)\binom{2n+2}{n+1}$$ and $$\left(\frac23\right)^n\left(\frac13\right)^{n+2}=\frac12\left(\frac29\right)^{n+1}.$$
So your sum can be rewritten, with $x=2/9,$ as:
$$\frac12\sum_n \binom{2n+2}{n+1}x^{n+1} -\frac1{2x}\sum_n \frac1{n+2}\binom{2n+2}{n+1}x^{n+2}.$$
So if $F$ is an antiderivative of $f$ with $F(0)=0,$ this becomes:
$$\frac12f(2/9)-\frac94F(2/9).$$
Now $f(2/9)=\frac{1}{\sqrt{1-8/9}}-1=2.$
So now we just need an antiderivative for $f.$
We can show: $$F(x)=-\frac12(1-4x)^{1/2}-x+C.$$ Then $C=1/2,$ and $F(2/9)=-\frac16-\frac29+\frac12=\frac1{9}.$
So you get a result of $\frac34.$
This problem can be easily solved using recursion, but I was just trying to solve it in a more 'combinatoric-ish' way. But now I think that my original sum is not correct. I overcounted : p
– Dennis Nov 05 '22 at 22:11