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?