I wish to verify that Harmonic numbers $H_n = \sum_{k=1}^{n} \frac{1}{k}$ are $\Theta(\log n)$.
One idea I have is to approximate the sum with an integral:
$$\int_{1}^{n} \frac{1}{k} ~dk = \log(n) - \log(1) = \log(n)$$
But I don't know if this is valid and I want a more direct proof.
In other words I want to show that:
$$\sum_{k=1}^{n} \frac{1}{k} \leq c \log n$$
and
$$\sum_{k=1}^{n} \frac{1}{k} \geq d \log n$$
For some $n \geq n_0$ and positive reals $c,d$. Is there an intuitive way to do this that doesn't rely on weird calculus tricks? I see derivations in the post here:
Simple proof of showing the Harmonic number $H_n = \Theta (\log n)$
but none of these seem intuitive to me (they rely on higher calculus and series tests and Riemann sums).