1

I want to use snake oil to evaluate $\sum\limits_{k=0}^n(3k+1)\text C_n^k$. I want to try the method despite of the simplicity of this sum.

However, I got stuck after exchanging the order of summation.

Let $f(n)=\sum\limits_{k=0}^n(3k+1)\text C_n^k$, and $F(x)=\sum\limits_mx^mf(m)$. So \[F(x)=\sum_mx^m\sum_{k=0}^m(3k+1)\text C_m^k=\sum_k\sum_{m\ge k}x^m(3k+1)\text C_m^k.\] I don't know how to write this as a closed form.

RobPratt
  • 45,619
youthdoo
  • 1,139

1 Answers1

2

The factor $(3k+1)$ isn't involved when you are summing over $m$, so it can be pulled out of the inner summation. Next, assuming $C_n^k$ means ${n\choose k}$, you can use the formula $$ \sum_{m=k}^{\infty} \binom{m}{k} x^m = \frac{x^k}{(1-x)^{k+1}} $$ which you can prove by induction.

After simplification you'll have sums of the form $\sum_{k=0}^\infty r^k$ and $\sum_{k=0}^\infty kr^k$.

grand_chat
  • 38,951