I am following Gleich(2005): "Finite Calculus: A Tutorial for Solving Nasty Sums". At one point when referring to the fact that
The function $H_x$ (https://en.wikipedia.org/wiki/Harmonic_number) is the antiderivative of $x^{\underline{-1}}$ (The underline is a notation to write a falling factorial, $x^{\underline{-1}} = \dfrac{1}{x+1}$).
The author writes
There is no easy way of getting the correct function ($H_x$) intuitively.
So I am wondering what is the way of getting the correct function? I realized that basically one has to solve the following finite difference equation for $f(x)$: $$ f(x+1) - f(x) = \frac{1}{x+1}. $$ But, apart from guessing the correct function, is there a systematic way of solving such an equation to see that the solution is $f(x) = H_x$?
Update: This finite difference equation is of course the discrete version of $$ \lim_{h \rightarrow 0} \frac{f(x+h) - f(x)}{h} = \lim_{h \rightarrow 0} \frac{1}{x+h} $$ or short $\frac{df}{dx} = 1/x$ with the solution $f(x) = \ln(x) + C$.
By telescoping,$$ f(n) = f(0) + \sum_{k = 1}^n (f(k) - f(k - 1)) = f(0) + \sum_{k = 1}^n \frac{1}{k} = f(0) + H_n. $$