1

I dont know how to proceed with solving $$\sum_{i=1}^{n}i^{k}(n+1-i).$$ Please give advise.

4 Answers4

2

You can factor out the $(n+1)$ to give $(n+1)\sum_{i=1}^n i^k-\sum_{i=1}^n i^{k+1}$ For positive integral $k$ you can use Faulhaber's formulas. What kind of $k$ are you considering?

Ross Millikan
  • 374,822
1

$$\sum_{i=1}^{n}i^{k}(n+1-i)$$

is same as

$$\sum_{i=1}^{n}i(n+1-i)^{k}$$

which looks like some combination of Eulerian number.

bspk
  • 11
0

$H_n^{(k)}=\sum_{i=1}^n i^{-k}$ is by definition the $n$-th harmonic number of order $k$. Thus, $$ \sum_{i=1}^n i^{k} (n+1-i) = (n+1) H_n^{(-k)}- H_n^{(-k-1)}. $$ I don't think it can be simplified further, at least considerably and for any $n$ and $k$. Is this what you meant by "solving"?

0

This is a prefix sum of natural numbers. The solution to this is

$$\binom{n+k+1}{k+2}$$

pravin
  • 1