Fibonacci Function
Generates a Fibonacci sequence
Description
The function Fibonacci generates a Fibonacci sequence, including zero as the first value. The function has a parameter in which the length of the list is specified.
The sequence begins with 0, followed by a 1. Subsequently, the sum of two consecutive numbers results in the number following immediately afterwards.
Syntax
Fibonacci (length)
Example
Fibonacci(10)= 0 1 1 2 3 5 8 13 21 34