The sequence N of natural numbers is divided into classes as follows
1
2 3 4
5 6 7 8 9
10 11 12 13 14 15 16
.......................................................
......................................................................
Find the sum of the numbers of n-th row
Wecanseethatanyrowhasanumberwhichisonemorethanthelastnaturalnumberusedinpreviousrow.letthebeginningnumberofnthrowisAnthenA1=1,A2=2,A3=5,A4=10A2−A1=1A3−A2=3A4−A3=5∴An−A1=1+3+5+......upto(n−1)terms∴An=(n−1)2+A1=(n−1)2+1∴sumofnthrow=((n−1)2+1)+(n2+1)+.......upto(2n−1)terms=(n−1)2+n2+......(2n−1)terms+(2n−1)=(3n3−4n2+4n2)