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