Fibonacci {Zseq} | R Documentation |
Under OEIS A000045, the nth Fibonnaci number is given as
F_n = F_{n-1} + F_{n-2}
where the first 6 entries are 0, 1, 1, 2, 3, 5 with n\ge 0.
Fibonacci(n, gmp = TRUE)
n |
the number of first |
gmp |
a logical; |
a vector of length n
containing first entries from the sequence.
## generate first 30 Fibonacci numbers
print(Fibonacci(30))