Return the n-th Fibonacci number
fibonacci(n)
n | n |
---|
the sequence element
This function is recursively implements the famous Fibonacci
sequence. The function returns the n
th member of the
sequence.
Other algebra:
bilinear()
,
cubicspline()
,
division
,
horner()
,
isPrime()
,
linterp()
,
nthroot()
,
polyinterp()
,
pwiselinterp()
,
quadratic()
fibonacci(10)
#> [1] 55