<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from math import *

N=50
a=2.0
c=0.0
k=1
for i in range(0, 30):
    c=sqrt(c+2)
    b=2/c
    a=a*b
    print "%17.16f"%a, abs(a-pi)
</pre></body></html>