1

I was playing around with binomial coefficients and binomial expansions and I came across an interesting identity:

$$ \sum_{k=0}^n\frac{1}{k+1}{n \choose k}x^k=\frac{(x+1)^{n+1}-1}{(n+1)x}$$

I have verified this for a few different values of n and wolfram alpha seems to agree (see here) but I'm not quite sure how to go about proving it.

ASKASK
  • 9,000
  • 4
  • 28
  • 49

2 Answers2

3

$$\begin{align} (x+1)^{n+1}-1 &=\sum_{k=0}^{n+1}{n+1\choose k}x^k-1\\ &=\sum_{k=1}^{n+1}{n+1\choose k}x^k\\ &=\sum_{k=0}^{n}{n+1\choose k+1}x^{k+1}\\ &=\sum_{k=0}^{n}\frac{n+1}{k+1}{n\choose k}x^{k+1}\\ &=(n+1)x\sum_{k=0}^{n}\frac 1{k+1}{n\choose k}x^k\\ \sum_{k=0}^{n}\frac 1{k+1}{n\choose k}x^k &=\frac{(x+1)^{n+1}-1}{(n+1)x}\qquad\blacksquare \end{align}$$

1

Define $$f(x)= \sum_{k=0}^n\frac{1}{k+1}{n \choose k}x^k$$

$$g(x) = xf(x) = \sum_{k=0}^n\frac{1}{k+1}{n \choose k}x^{k+1}$$

Then we have $g'(x) =\sum_{k=0}^n{n \choose k}x^{k} = (1+x)^n$.

Since $g(0) = 0$, we get $g(x) = \frac{(1+x)^{n+1} -1}{n+1}$, then the expression of $f(x)$ accordingly.