RAC3 = 3**0.5
s, t = 3 * RAC3 / 2, 3 * RAC3

for _ in range(10):
    t = (2 * s * t) / (s + t)
    s = (s * t)**0.5
    print(s, t)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: