How to calculate the sum for incremental value that is calculated by this formula:
$val = (5n)^2$ so sequence of $val$ will be $(25, 100, 225, 400, 625, \cdots)$
And sum sequence should be: $(25, 125, 350, 750, 1375, \cdots)$
(where sum is the total from 1 to $n$)
What is the formula to get the sum for $n$ when $n$ is $10$ or $15$?