This is the question from "Data Structures and Algorithm Analysis in C" By Mark Weiss. It is the question 1.7. It goes as follows:-
Estimate the sum $\sum\limits_{i=\lfloor{N/2}\rfloor}^N\frac{1}{i}$.
My approach is as follows:-
$\sum\limits_{i=\lfloor{N/2}\rfloor}^N\frac{1}{i}$ = $\sum\limits_{i=1}^N\frac{1}{i} - \sum\limits_{i=1}^{\lfloor{N/2}\rfloor-1}\frac{1}{i}$ $\approx$ $\ln N - ln ({\lfloor{N/2}\rfloor-1})$.
After this I am lost. Any help please.

