A mega pizza is to be sliced $n$ times,and $S_n$ denotes maximum possible number of pieces.
I got $S_1 = 2 $ , $S_2 =4 $ , $S_3 =7 $ , $S_4 =11 $...
Comparing these we can say that $S_n=S_{n-1}+n$
So, $S_n=n+(n-1)+(n-2) \dots +2$
But is there a better way to do this?