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
row_sum(1) ➞ 1 row_sum(2) ➞ 5 row_sum(4) ➞ 34
1 <= N <= 1000