here is the general method, lets say you have n terms instead of 10, you can always subst the value of n at the end.
The general term of the series is
=r(r+1)(r+2)
=r3+3r2+2r
Now substitute r as 1,2,3....n to get the sum of the series.
.: Sn = (1)3 + 3(1)2 + 2(1) + (2)3 + 3(2)2 + 2(2).....n terms
= (13 + 23 + 33... n terms) + 3(12 + 22 + 32....n terms) + 2(1 + 2 + 3... n terms)
= using sum of cubes of first n nat nos.= n2(n+1)2/4
sum of squares of first n =n(n+1)(2n + 1) / 6
sum of first n nat numbers = n(n+1)/2
you get the sum of series as
= n(n+1)(n+2)(n+3) / 4
.: for n = 10
we get the sum as 4290