• + 1 comment

    True, I switched from JavaScript just to get it done.. did find a pitfall though.

    third = math.pow(second, 2) + first
    

    will produce weird numbers from the 8th iteration.

    instead must use: second*second + first