import math def sum_series(number): total = 0 total = math.pow((number * (number + 1)) /2, 2) return total