I was looking at the first answer to this question Simple proof of showing the Harmonic number $H_n = \Theta (\log n)$, which claims that the following sequence is decreasing: $$ f(n) = H_n - \log(n) $$ where $\log$ is the natural log and $H_n = \sum_{i = 1}^n \frac{1}{i}$.
Here is my attempt to verify this:
Observe that $$ f(n + 1) - f(n) = H_{n + 1} - \log(n + 1) - (H_n - \log(n)) = \frac{1}{n + 1} + \log \left(\frac{n}{n + 1} \right). $$ But this last term is positive, so it appears that the sequence is increasing! Where is my mistake?