1514a0b
1
2
3
4
5
6
def even_Power_Sum(n): sum = 0 for i in range(1, n + 1): j = 2 * i sum = sum + j * j * j * j return sum