Compute Fibonacci and Lucas numbers
fibnum compute n-th Fibonacci number. fibnum2 compute (n-1)-th and n-th Fibonacci number. lucnum compute n-th lucas number. lucnum2 compute (n-1)-th and n-th lucas number.
Fibonacci numbers are define by: Fn=Fn-1 + Fn-2 Lucas numbers are define by: Ln=Fn + 2Fn-1
fibnum(n) fibnum2(n) lucnum(n) lucnum2(n)
n |
Integer |
Fibonacci numbers and Lucas number.
Antoine Lucas
The GNU MP Library, see https://gmplib.org
fibnum(10) fibnum2(10) lucnum(10) lucnum2(10)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.