While solving a problem I got the following expression:
$$ \frac{\sum_{k=1}^{n}k^{4}}{\left(\sum_{k=1}^{n}k^{2}\right)^{2}} $$
My goal is to find out if this expression goes to $0$ when $n \to \infty$.
Using Faulhaulber's formula, we get
$$\sum_{k=1}^n k^{p} = \frac{n^{p+1}}{p+1}+\frac{1}{2}n^p+\sum_{k=2}^p \frac{B_{k}}{k!}p^\underline{k-1}n^{p-k+1}$$ Thus using Big-O notation, this is $\mathcal{O}(n^{p+1})$. Is $(\sum_{k=1}^n k^{p})^{2}$ $\mathcal{O}(n^{2(p+1)})$? I squared Faulhaulber's formula and it seems right, however I'd like a confirmation, thank you very much.