def parabole(x):
    y = x**2 + 3*x + 1
x = 1
for i in range(20):
    x = x + i
    print(parabole(x))