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).
\begin{align} & \frac 1 2 \le \int_1^2 \frac{dx} x \le 1 \\[8pt] & \frac 1 3 \le \int_2^3 \frac{dx} x \le \frac 1 2 \\[8pt] & \frac 1 4 \le \int_3^4 \frac{dx} x \le \frac 1 3 \\[8pt] & \qquad \qquad \vdots \\[10pt] \text{Hence } & \frac 1 2 + \frac 1 3 + \frac 1 4 + \cdots + \frac 1 {n+1} \le \int_1^{n+1} \frac{dx} x \le 1 + \frac 1 2 + \frac 1 3 + \cdots + \frac 1 n. \end{align} And finally, $$ 1 + \int_1^n \frac{dx} x \ge 1+ \frac 1 2 + \frac 1 3 + \cdots + \frac 1 n \ge \int_1^{n+1} \frac {dx} x, $$ i.e. $$ 1 + \log n \ge H_n \ge \log(n+1). $$