What is a good approximation for the function:
$$S_{N,k} = \sum_{i=N}^\infty {\frac{1}{i^k}}$$
when $k$ is a given constant (2, 3 or 4) and $N$ is large?
$S_{N,k}$ is a decreasing function of $N$; I am interested to know how fast it decreases. For example, is it true that $S_{N,k} = O(1/N)$?
You can approximate the sum using an integral. If $j < x < j+1$ you have $\frac{1}{j^k} > \int_j^{j+1} \frac{1}{x^k} dx > \frac{1}{(j+1)^k}$. This will allow you to develop both an upper and a lower bound on your sum and you should find that $S_{N,k} = O(1/N^{k-1})$.