Find the sum of first n even natural numbers.
Even numbers: 2,4,6,....
a = 2,
d= 2
Sum of n terms, Sn=n2[2a+(n−1)d]=n2[2(2)+(n−1)2]=n2[4+2n−2]=n2[2n+2]=n(n+1)
Sum of n even numbers , Sn=n(n+1)