import math
from math import factorial
e = math.e
X = [0] * 10
i = 0
while i in range(10):
if i % 2 == 0:
X[i]=3**i+7*factorial(i)
print(X)
else:
X[i]=2**i+4*math.log(i, e)
i = i + 1
input("Press enter to exit ;)")