We know that that infinite series gives:
$$\sum_{i=1}^{k}i = k(k+1)/2$$
I am analyzing an algorithm that has complexity:
$$ n\sum_{i=2}^{k} i$$
My goal is to produce the tightest possible bound on this algorithm. Is it sound to say that the above sum is equivalent to:
$$ n*(k(k+1))\div2-1 $$
What is the best way to reduce my sum into a formula for analysis?