Fifths Model

x, y = 1, 1
while true:
    x, y = (x + y)**5, 2*(x + y)**5 + 1
end