Difference between revisions of "Manuals/calci/FIBONACCI"

From ZCubes Wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
<div style="font-size:30px">'''FIBONNACI (NumberUpto)'''</div><br/>
 
<div style="font-size:30px">'''FIBONNACI (NumberUpto)'''</div><br/>
 
*<math>NumberUpto </math> is the number to find the Series.
 
*<math>NumberUpto </math> is the number to find the Series.
 +
**FIBONACCI() returns the fibonnaci sequence.
  
 
==Description==
 
==Description==
Line 16: Line 17:
 
#FIBONACCI(17) = 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
 
#FIBONACCI(17) = 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
 
#FIBONACCI(8.5) = 0 1 1 2 3 5 8 13 21 34
 
#FIBONACCI(8.5) = 0 1 1 2 3 5 8 13 21 34
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=Bdbc1ZC-vhw|280|center|FIBONACCI}}
  
 
==See Also==
 
==See Also==
Line 24: Line 29:
 
==References==
 
==References==
 
*[http://mathworld.wolfram.com/FibonacciNumber.html Fibonacci]
 
*[http://mathworld.wolfram.com/FibonacciNumber.html Fibonacci]
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 16:00, 11 January 2019

FIBONNACI (NumberUpto)


  • is the number to find the Series.
    • FIBONACCI() returns the fibonnaci sequence.

Description

  • This function returns the Values of the Fibonnaci Series.
  • In , is any positive real number.
  • The Fibonacci numbers are the sequence of numbers defined by the linear recurrence equation

,with

  • The Fibonacci numbers for n=1, 2, ... are 1, 1, 2, 3, 5, 8, 13, 21, ...
  • When the parameter 0,then the result as 0.
  • When the parameter is in Decimal,then it is truncated in to integer.
  • When the parameter is the negative number then it will truncated in to integer.

Examples

  1. FIBONACCI(5) = 0 1 1 2 3 5
  2. FIBONACCI(17) = 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
  3. FIBONACCI(8.5) = 0 1 1 2 3 5 8 13 21 34

Related Videos

FIBONACCI

See Also

References