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