I was trying to construct a polynomial that was approximately equal to $\sum^{x}_{k=1} \sqrt{k}$. I knew the first term must be $\frac{2}{3} x^{3/2}$ and the second term must be $\sqrt{x}$ times some constant, $a$. Below I solved, for $a$.
$$\sum^{x}_{k=1} \sqrt{k} \approx \frac{2}{3} x^{3/2}+ a \sqrt{x}$$
$$a \approx \frac{-\frac{2}{3} x^{3/2} + \sum^{x}_{k=1} \sqrt{k}}{\sqrt{x}}$$
$$a = \lim_{n \to \infty} \frac{-\frac{2}{3} n^{3/2} + \sum^{n}_{k=1} \sqrt{k}}{\sqrt{n}}$$
$$a=\frac{1}{2}$$
My issue is that I know no other means to calculate the value of $a$ without plugging in huge numbers and guessing. Does anyone know how to prove the limit more rigorously?
$$\frac23\sum_{k=1}^n \left(k^{3/2}-(k-1)^{3/2}+\frac34 \left(k^{1/2}-(k-1)^{1/2}\right)\right)=\frac23n^{3/2}+\frac12 n^{1/2}$$
and
$$\frac23\left(k^{3/2}-(k-1)^{3/2}+\frac34 \left(k^{1/2}-(k-1)^{1/2}\right)\right)=\sqrt{k}+O\left(\frac1{k^{3/2}}\right)$$
– Mark Viola Mar 30 '21 at 16:41