Difference between revisions of "Manuals/calci/FIBONNACI"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<div style="font-size:30px">'''FIBONNACI (NumberUpto)'''</div><br/>
+
=FIBONNACI (NumberUpto)=
 
where,  
 
where,  
 
*<math>NumberUpto</math> is any real number.
 
*<math>NumberUpto</math> is any real number.
Line 59: Line 59:
 
== See Also ==
 
== See Also ==
  
 +
*[[Manuals/calci/NSTEPFIBONACCI | NSTEPFIBONACCI]]
 +
*[[Manuals/calci/NSTEPFIBONACCI| TRIBONACCI]]
 +
*[[Manuals/calci/NSTEPFIBONACCI| TETRANACCI]]
 +
*[[Manuals/calci/NSTEPFIBONACCI| PENTANACCI]]
 +
*[[Manuals/calci/NSTEPFIBONACCI| HEXANACCI]]
 +
*[[Manuals/calci/NSTEPFIBONACCI| HEPTANACCI]]
 
*[[Manuals/calci/FACT | FACT]]
 
*[[Manuals/calci/FACT | FACT]]
  

Latest revision as of 15:57, 16 February 2020

FIBONNACI (NumberUpto)

where,

  • is any real number.
    • FIBONNACI(), returns the fibonnaci sequence.

Description

FIBONNACI(NumberUpto) or FIBONACCI(NumberUpto)

e.g. FIBONNACI(3) returns 0, 1, 1, 2 as a result.

FIBONACCI(6) returns 0, 1, 1, 2, 3, 5, 8 as a result.

  • Fibonacci sequence is a series of numbers in which, after first two numbers each subsequent number is the sum of the previous two numbers.
  • Fibonacci sequence is as follows -

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, .......

  • Argument specifies the count of numbers for which the sequence is to be displayed.

e.g. if is '3', Calci displays Fibonacci series up to 3 numbers excluding '0'.

  • If < zero(0), Calci displays #NULL error message.
  • If is not an integer, Calci rounds it up to display the result.
  • Both spellings supported - FIBONNACI(NumberUpto) or FIBONACCI(NumberUpto)

Examples

Function Output
FIBONNACI(5) 0, 1, 1, 2, 3, 5
FIBONNACI(6) 0, 1, 1, 2, 3, 5, 8
FIBONNACI(5.4) 0, 1, 1, 2, 3, 5, 8
FIBONACCI(6) 0, 1, 1, 2, 3, 5, 8

Related Videos

FIBONNACI

See Also

References