from math import log
u = 1
for n in range(49):
    u = log(1 + 1/u)
    print(u)
