Hacker News new | ask | show | jobs
by xtagon 1251 days ago
It also converges closer and closer to the golden ratio. Implementing a property test for that would be interesting.
1 comments

    a, b, c = fib(n), fib(n+1), fib(n+2)
    assert abs(c / b - phi) < abs(b / a - phi)