n is an integer starting from 1. There is a series 1 / n**(1/5). Find the smallest sum of the series which is larger than 505.
def sum_series(n): return 1 / n**(1/5) sum_series(10) A: You can use the fact that the sum of a geometric series is the reciprocal of the common ratio raised to the sum of the indices: def sum_series(n): return 1.0 / (1.0 / n**(1.