Fibonacci sequence
Next number in sequence = current number in sequence * multiplier + previous number in sequence
Result
F(multiplier) = multiplier / 2 + Square root of ((multiplier / 2) * (multiplier / 2) + 1)
F(1) = 1 / 2 + Square root of ((1/2) * (1/2) + 1)
F(1) = 0,5 + Square root of (1,25)
F(1) = 0,5 + SQR (1,25)
Prev=24157817, Next=39088169,
ratio=1,61803398874989,
inverse=0,618033988749895
Multiplier info
The Multiplier is used only for the last number in the sequence when calculating the next number in the sequence.
For example:
- with a base of (0,1) and multiplier = 3
- next number in sequence is: 1 * 3 + 0 = 3
- next number in sequence is: 3 * 3 + 1 = 10
- next number in sequence is: 10 * 3 + 3 = 33
- next number in sequence is: 33 * 3 + 10 = 109
- etc.
If the Base is greater than 2 numbers, then the multiplier is applied only to the last number in the sequence.
For example:
- if the base is 4 numbers (0,1,2,3) and if multiplier = 2 then
- next number in sequence is : 3 * 2 + 2 + 1 + 0 = 9
- next number in sequence is: 9 * 2 + 3 + 2 + 1 = 24
- next number in sequence is: 24 * 2 + 9 + 3 + 2 = 62
- next number in sequence is: 62 * 2 + 24 + 9 + 3 = 160
- next number in sequence is: 160 * 2 + 62 + 24 + 9 = 415
- etc.
Base info
The Base is used to start the sequence.
For a pure Fibonacci sequence, the base is 0,1.
For variations, the base can be more that 2 numbers.
For example:
- if the base is 4 numbers (0,1,2,3) [and multiplier is 1 - default value] then
- next number in sequence is : 3 + 2 + 1 + 0 = 6
- next number in sequence is: 6 + 3 + 2 + 1 = 12
- next number in sequence is: 12 + 6 + 3 + 2 = 23
- next number in sequence is: 23 + 12 + 6 + 3 = 44
- next number in sequence is: 44 + 23 + 12 + 6 = 85
- etc.
Note: the number of values is limited to 9.
Note: if you specify a base of any 2 numbers, it will always result in the Fibonacci sequence. Try it !
Iterations info
The Iterations is used to limit the number of times the sequence is calculated.
For example:
- with a base of (0,1) and multiplier = 1 [default] and iterations = 4
- first number in sequence is: 1 * 1 + 0 = 1
- second number in sequence is: 1 * 1 + 1 = 2
- third number in sequence is: 2 * 1 + 1 = 3
- fourth number in sequence is: 3 * 1 + 2 = 5
Note: the number of iterations will stop when the ratio remains the same from one sequence to the next.
Tip: You can view all the numbers calculated during the sequencing by viewing the page source code.