I know that
$$T(1)=1$$
and
$$k=n-1$$
Try to solve:
$$ T(n)=T(n-1)+n^3 \\ = T(n-2)+(n-1)^3 + n^3 \\ = T(n-3)+(n-2)^3+(n-1)^3+n^3 \\ = T(n-k)+\sum_{i=0}^{k-1} (n-i)^3$$
I think the nexst step is to eliminate the sum. But I am not sure how. One idea is to use little gauss:
$$\sum_{i=1}^{k} k=n(n+1)/2$$
but I am not sure how I can apply this to $$(n-i)^3$$
Any ideas?
As $T(n)-T(n-1)$ is a third degree polynomial in $n$, we can infer that $T(n)$ is a fourth degree polynomial.
Hence we compute the first five values
$$T(1)=1,T(2)=9,T(3)=36,T(4)=100,T(5)=225$$
and build the corresponding Lagrange polynomial which is
$$\frac{n^2(n+1)^2}4.$$
For ease of computation, you can notice that the values are perfect squares, namely $$1^2,3^2,6^2,10^2,15^2$$ where you recognize triangular numbers.