Fibonacci
Returns the desired Fibonacci number. Fibonacci numbers are the numbers in the Fibonacci sequence, characterized by the fact that every number after the first two is the sum of the two preceding ones: . The first two numbers are defined as 1: .
If is negative, the Fibonacci numbers are defined as .
Syntax
fibonacci(Integer)
Description
Given an integer , returns the -th Fibonacci number: .