Using $S_n = \sum_{k=1}^{n}H_k$ where $H_k$ are the harmonic numbers, show $S_n = (n+1)H_n - n$

555 Views Asked by At

The question:

Using $S_n = \sum_{k=1}^{n}H_k$ where $H_k$ are the harmonic numbers, show $S_n = (n+1)H_n - n$.

So far I have

$S_n = \sum_{k=1}^{n} H_k = \sum_{k=1}^{n} \sum_{j=1}^{k}\frac{1}{j} $

is there perhaps some way to change the summation index?

Or would the next step come from

$S_n = \sum_{k=1}^{n}[1+ \frac{1}{2} + \frac{1}{3} + ...+\frac{1}{k-1} + \frac{1}{k}]$

Any help would be appreciated.

3

There are 3 best solutions below

2
On BEST ANSWER

$$ \begin{align} \sum_{k=1}^nH_k &=\sum_{k=1}^n\sum_{j=1}^k\frac1j\tag{1}\\ &=\sum_{j=1}^n\sum_{k=j}^n\frac1j\tag{2}\\ &=\sum_{j=1}^n\frac{n-j+1}{j}\tag{3}\\ &=(n+1)\sum_{j=1}^n\frac1j-\sum_{j=1}^n1\tag{4}\\ &=(n+1)H_n-n\tag{5} \end{align} $$ Explanation:
$(1)$: expand $H_k$
$(2)$: exchange order of summation (we are summing over all $1\le j\le k\le n$)
$(3)$: summing $n-j+1$ identical copies of $\frac1j$
$(4)$: pull out the $n+1$ from the $\frac{n+1}{j}$ and separate the $\frac jj$
$(5)$: simplify

2
On

Hint: Use induction on $n$.

The base case is $n=1$, which is obvious: $S_1=H_1=1$, while $(1+1)H_1-1=2-1=1$.

Can you see how to relate $S_{n+1}$ to $S_n$ for the inductive step?

2
On

A change of the order of summation gives the result: $$S_n=\sum_{j\leqslant k\leqslant n}\frac 1j=\sum_{j=1}^n\sum_{k=j}^n\frac 1j=\sum_{j=1}^n\frac{n-j+1}j=(n+1)H_n-n.$$