S=$1.3.2^2+2.4.3^2+3.5.4^2+........$ upto n terms
Find S?
This was asked under the heading using method of difference and ans given was (n)(n+1)(n+2)(n+3)(2n+3)/10
S=$1.3.2^2+2.4.3^2+3.5.4^2+........$ upto n terms
Find S?
This was asked under the heading using method of difference and ans given was (n)(n+1)(n+2)(n+3)(2n+3)/10
Copyright © 2021 JogjaFile Inc.
The brute force way: $$\sum_{k=1}^nk(k+1)^2(k+2)=\sum_{k=1}^n(k^4+4k^3+5k^2+2k)=$$ $$=\tfrac{n(n+1)(2n+1)(3n^2+3n-1)}{30}+4\cdot\frac{n^2(n+1)^2}{4}+5\cdot\frac{n(n+1)(2n+1)}{6}+2\cdot\frac{n(n+1)}{2}=$$ $$=\frac{n(n+1)(n+2)(n+3)(2n+3)}{10}.$$ Now, easy to make the telescopic sum. $$\sum_{k=1}^nk(k+1)^2(k+2)=$$ $$=\sum_{k=1}^n\left(\frac{k(k+1)(k+2)(k+3)(2k+3)}{10}-\frac{(k-1)k(k+1)(k+2)(2k+1)}{10}\right)=$$ $$=\frac{n(n+1)(n+2)(n+3)(2n+3)}{10}.$$