It is known that $$ \sum_{k=1}^{n}k^1=\binom{n+1}{2} $$ and $$ \sum_{k=1}^{n}k^2=\binom{n+1}{2}+2\binom{n+1}{3} $$ Is there a formula for $$ \sum_{k=1}^{n}k^m, $$ where $m$ is a positive integers, using binomial coefficients of the form $\binom{n+1}{k}$ ?
-
See, for instance, this video by Mathologer. – Arthur Sep 04 '21 at 19:51
-
Yes the sum is stricly correlated to binomial coefficients. – user Sep 04 '21 at 19:51
-
1Faulhaber's formula – nejimban Sep 04 '21 at 19:51
-
yeah, that's correct, oops. – razivo Sep 04 '21 at 19:52
-
Thanks, but where Faulhtaber's formula uses the coefficients $\binom{n+1}{k}$ ? – boaz Sep 04 '21 at 19:55
-
Still, if you take $p=2$ you do not get the same identity asked. I want to express the sum using expressions of the form $\binom{n+1}{k}$ – boaz Sep 04 '21 at 20:01
-
I see. Faulhaber's formula expresses the sum as a polynom in $\binom{n+1}2$. Perhaps this can be transformed into $\binom{n+1}k$'s using binomial identities. – nejimban Sep 04 '21 at 20:06
-
I believe that the third approach in this post might answer your question. – robjohn Sep 04 '21 at 21:35
1 Answers
Note $$ x^m = \sum_{k=0}^m S_{m,k}\binom{x}{k} \tag1$$ where $$ S_{m,k} = S_2(m,k) k! $$ and $S_2(m,k)$ is the Stirling number of the second kind.
For $m \ge 1$ we have $S_2(m,0) = 0$, so $$ x^m = \sum_{k=1}^m S_{m,k}\binom{x}{k} \tag2$$ For example $$ x^5 = \binom{x}{1} +30\binom{x}{2} +150\binom{x}{3} +240\binom{x}{4} +120\binom{x}{5} $$
From $(2)$ we get $$ \sum_{x=1}^{n-1} x^m = \sum_{x=1}^n \sum_{k=1}^m S_{m,k}\binom{x}{k} = \sum_{k=1}^m S_{m,k} \sum_{x=1}^n \binom{x}{k} \tag3$$ Now $$ \sum_{x=1}^n \binom{x}{k} = \binom{n+1}{k+1}\qquad\text{if } k \ge 1 $$ so from $(3)$ we have our answer: if $m \ge 1$ then $$ \sum_{x=1}^{n} x^m = \sum_{k=1}^m S_{m,k} \binom{n+1}{k+1} \tag4$$
Recall: $S_{m,k} = S_2(m,k) k!$ where $S_2(m,k)$ is the Stirling number of the second kind.
For example, $$ \sum_{x=1}^n x^5 = \binom{n+1}{2} +30\binom{n+1}{3} +150\binom{n+1}{4} +240\binom{n+1}{5} +120\binom{n+1}{6} $$

- 111,679