$$S=1^2+3^2+6^2+10^2+15^2+.......$$
My attempt is as follows:
$$T_n=\left(\frac{n\cdot\left(n+1\right))}{2}\right)^2$$
$$T_n=\frac{n^4+n^2+2\cdot n^3}{4}$$
$$S=\frac{1}{4}\cdot\sum_{n=1}^{n}\left(n^4+n^2+2\cdot n^3\right)$$
Now to solve this one has to calculate $\sum_{n=1}^{n}n^4$ which will be a very lengthy process, is there any shorter method to solve this question?
By the way I calculated $\sum_{n=1}^{n}n^4$ and it came as $\dfrac{\left(n\right)\cdot\left(n+1\right)\cdot\left(2\cdot n+1\right)\cdot\left(3\cdot n^2+3\cdot n-1\right)}{30}$, then I substituted this value into the original equation.
Then I got final answer as $\dfrac{\left(n\right)\cdot\left(n+1\right)\cdot\left(n+2\right)\cdot\left(3\cdot n^2+6\cdot n+1\right)}{60}$
But it took me a very long time to calculate all of this, is there any shorter way to solve this problem?
Well...there's a way to get a good guess of the answer. You could say to yourself (or plot the data!) that it looks like a 5th degree polynomial, $$ p(n) = a_5n^5 + a_4 n^4 + \ldots + a_0. $$ Then you know that $$ p(n+1) - p(n) $$ is the thing you've called $T_n$, but it's also $$ a_5[(n+1)^5 - n^5] + a_4 [(n+1)^4 - n^4] + \ldots + a_1 [(n+1)^1 - n^1] $$ which you can write out as a 4th degree polynomial. The first term will be $$ 4 a_5 n^4, $$ I think, which I got by simply expanding $(n+1)^5 - n^5$ using Pascal's triangle.
Setting this 4th degree poly equation to $T_n$, you get a triangular system of equations that can be backsubstituted to get an answer.
OF course, you then must check that the answer is in fact correct. You know it satisfies the recurrence, but you also need to show it gives the correct values for the first few values of $n$ (perhaps the first six?)
Is it faster? Probably. But not a lot. And if the answer had turned out not to be polynomial, you'd have wasted a lot of time.