Given $n$ random variables $X_1, X_2,\dots, X_n$, which are independent and exponentially distributed with rate parameter $\lambda$, I was able to prove that
$$\mathbb E[\max\{X_1, X_2,\dots, X_n\}] = \frac{1}{\lambda}\sum_{k=1}^n(-1)^{k-1}\frac{n \choose k}{k}$$
However, I learnt from a different source that the expected value is the more elegant sum
$$\mathbb E[\max\{X_1, X_2,\dots, X_n\}] = \frac{1}{\lambda}\sum_{k=1}^n\frac{1}{k}$$
Numerically, both series are identical. How do I go about proving this analytically though? i.e. proving that
$$\sum_{k=1}^n(-1)^{k-1}\frac{n \choose k}{k} = \sum_{k=1}^n\frac{1}{k}$$
I have tried a few techniques to no avail e.g. using induction and trying to prove that
$$\sum_{k=0}^n(-1)^k\frac{n \choose k}{k + 1} = \frac{1}{n + 1}$$
(The context is the mean time to failure of a RAID 1 array with $n$ identical disks).
Thanks!