In the "cumulative" version of your sequence, the differences between successive terms increases linearly: $75 - 25 = 50$, then $150 - 75 = 75$, then $250-150 = 100$ ... each difference is $25$ greater than the last. This means that the sequence can be fitted by a quadratic.
Let the quadratic be $an^2 + bn + c$. It should give the terms in your sequence, using $n=0,1,2,\, ...$
We only have to plug in the first three values of $n$ to get enough information to find the quadratic:
\begin{align}
a(0)^2 + b(0) + c &= 25\\\\
a(1)^2 + b(1) + c &= 75\\\\
a(2)^2 + b(2) + c &=150\\
\end{align}
The first equation tells us that $c=25$. The second and third together can be solved to give $a=25/2$ and $b=75/2$.
Therefore, the quadratic we want is
$$\boxed{\frac{25}{2}n^2 + \frac{75}{2}n + 25\,}$$
Just to make sure that we didn't mess anything up, use $n=3$ as a check:
$$\frac{25}{2}(3)^2 + \frac{75}{2}(3) + 25$$
This does equal $250$, as it should.