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