Imagine this triangle:
1 2 3 4 5 6 7 8 9 10 ...
Create a function that takes a number n and returns the sum of all numbers in nth row.
n
rowSum(1) ➞ 1 rowSum(2) ➞ 5 rowSum(4) ➞ 34
1 <= N <= 1000