A tiny Python script that outputs the (approximate) nth Fibonacci term (where the first & second terms are 1 and 1 respectively) using Binet's Fibonacci Formula in constant time.
To compute the nth term:
~$ python nth_fibonacci_calculator.py n
A tiny Python script that outputs the (approximate) nth Fibonacci term (where the first & second terms are 1 and 1 respectively) using Binet's Fibonacci Formula in constant time.
To compute the nth term:
~$ python nth_fibonacci_calculator.py n