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.
$$ \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