Consider the power sequence $$\sum_{n=1}^\infty (n^2+n^3)x^{n-1}$$ What is the function to which it sums to?
My reasoning is to differntiate the sum with respect to $x$, then to integrate with respect to x from $0$ to $x$ after variation of the sum into a Taylor series form.
I mean: $$\int _0 \frac{d}{dx}\sum_{n=1}^\infty (n^2+n^3)x^{n-1}dx=\int_0 \sum_{n=1}^\infty \frac{n^2+n^3}{n-1}x^{n-2}dx$$ But it doesn't seem to work in this exercise.
Here's a method which uses finite differences and generating functions. Let $a_{n}=(n+2)(n+1)^2$, so that the power series $$\sum_{n=0}^\infty a_n x^n=\sum_{n=1}^\infty a_{n-1} x^{n-1}=\sum_{n=1}^\infty (n+1)n^2 x^{n-1}$$ may be recognized as being the same as that of the OP. Let's focus our attention on the integer sequence $\{a_n\}$. Since the terms are polynomials in $n$, we compute the first few orders of finite differences:
\begin{array}{lllcccccc} &(\Delta_0 a)_n=a_n &:\quad &2, &12, &36, &80, &\ldots& n^3+n^2,&\cdots\\ &(\Delta_1 a)_n=(\Delta_0 a)_n-(\Delta_0 a)_{n-1} &:\,&2, &10, &24, &44, &\ldots& 3n^2-n,&\cdots\\ &(\Delta_2 a)_n=(\Delta_1 a)_n-(\Delta_1 a)_{n-1} &:\,&2, &8, &14, &20, &\ldots& 6n-4,&\ldots\\ &(\Delta_3 a)_n=(\Delta_2 a)_n-(\Delta_2 a)_{n-1} &:\,&2, &6, &6, &6, &\ldots& 6,&\cdots\\ &(\Delta_4 a)_n=(\Delta_3 a)_n-(\Delta_3 a)_{n-1} &:\,&2, &4, &0, &0, &\ldots& 0,&\cdots\\ \end{array}
Thus the fourth differences all vanish except for the first two terms, consistent with $a_n$ being cubic in $n$. We can turn this around: If we start with the sequence $\{2,4,0,0,\ldots\}$ and repeatedly take cumulative sums, we obtain the other sequences going from bottom to top. In particular, $a_n$ is the 'fourth cumulative sum' of the initial sequence.
Why does this matter? First, note that the generating function of the sequence $\{2,4,0\ldots\}$ is simply $2+4x$. Moreover, there is a simple way to implement 'cumulative sums' with generating function: Just divide by $(1-x).$ (Check it for yourself if you're not sure.) So the generating function of the fourth cumulative sum is just $\boxed{\sum\limits_{n=0}^\infty a_n x^n =\dfrac{2+4x}{(1-x)^4}}$, and we conclude that this is the desired series summation.