Shankar B. answered 05/27/19
Engineer from IIT, MBA from Top US B-School, Top Strategy Consultant
The nth term of this sequence is simply the difference between the sum upto n terms minus the sum upto n-1 terms..
Therefore,
Tn
= 2n2+n - [ 2(n-1)2+(n-1) ]
= 2n2+n - [ 2(n2-2n+1)+(n-1) ]
= 2n2+n - 2n2+4n-2-n+1
= 4n-1 (answer)
PRO TIP: Best to check if the answer holds true by substituting a few simple numbers.
n Tn Sum(n)
1 3 3 (= 2*1^2 + 1)
2 7 10 (=2*2^2 + 2)
3 11 21 (=2*3^2 + 3)
... and so on