You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Usage
To compute the nth term:
~$ python nth_fibonacci_calculator.py n
About
A tiny script for calculating the nth Fibonacci term (where the first & second terms are 1 and 1) in constant time