Connect via MCP →

Enter Calculation

Formula

Advertisement

Results

Fibonacci function at first index v = -10
-55
F(v) = (phi^v - (1/phi)^v cos(v pi)) / sqrt(5)
Rows 101
F at last index v = 10 55
Index v Fibonacci function F(v)
-10 -55
-9.8 -40.411828
-9.6 -14.016583
-9.4 12.739332
-9.2 30.285557
-9 34
-8.8 24.984835
-8.6 8.672581
-8.4 -7.862488
-8.2 -18.705555
-8 -21
-7.8 -15.426993
-7.6 -5.344002
-7.4 4.876844
-7.2 11.580002
-7 13
-6.8 9.557843
-6.6 3.328579
-6.4 -2.985644
-6.2 -7.125553
-6 -8
-5.8 -5.86915
-5.6 -2.015423
-5.4 1.8912
-5.2 4.454449
-5 5
-4.8 3.688692
-4.6 1.313157
-4.4 -1.094444
-4.2 -2.671104
-4 -3
-3.8 -2.180458
-3.6 -0.702266
-3.4 0.796756
-3.2 1.783344
-3 2
-2.8 1.508235
-2.6 0.61089
-2.4 -0.297688
-2.2 -0.88776
-2 -1
-1.8 -0.672223
-1.6 -0.091376
-1.4 0.499068
-1.2 0.895584
-1 1
-0.8 0.836011
-0.6 0.519515
-0.4 0.20138
-0.2 0.007824
0 0
0.2 0.163788
0.4 0.428139
0.6 0.700447
0.8 0.903408
1 1
1.2 0.999799
1.4 0.947654
1.6 0.901827
1.8 0.911232
2 1
2.2 1.163587
2.4 1.375793
2.6 1.602275
2.8 1.814641
3 2
3.2 2.163387
3.4 2.323446
3.6 2.504102
3.8 2.725873
4 3
4.2 3.326974
4.4 3.699239
4.6 4.106376
4.8 4.540514
5 5
5.2 5.490361
5.4 6.022685
5.6 6.610478
5.8 7.266387
6 8
6.2 8.817335
6.4 9.721923
6.6 10.716854
6.8 11.806901
7 13
7.2 14.307695
7.4 15.744608
7.6 17.327332
7.8 19.073288
8 21
8.2 23.12503
8.4 25.466531
8.6 28.044186
8.8 30.880188
9 34
9.2 37.432725
9.4 41.211139
9.6 45.371518
9.8 49.953476
10 55

What this calculator does

This tool computes the Fibonacci function \(F(\nu)\): the extension of the familiar Fibonacci numbers from integer indices to any real number \(\nu\). It uses the closed-form (Binet-style) real extension and builds a table of (index \(\nu\), value \(F(\nu)\)) pairs over a range you choose. This is pure mathematics, so it applies identically everywhere.

The formula

Let \(\varphi = \frac{1+\sqrt5}{2}\) be the golden ratio (about 1.6180339887) and note \(\frac{1}{\varphi} = \frac{\sqrt5 - 1}{2}\). The real Fibonacci function is:

$$F(\nu) = \frac{1}{\sqrt5}\left[\varphi^{\nu} - \left(\frac{1}{\varphi}\right)^{\nu}\cos(\nu\pi)\right]$$

For the discrete Binet formula \(F(n) = \frac{\varphi^n - \psi^n}{\sqrt5}\) with \(\psi = \frac{1-\sqrt5}{2} = -\frac{1}{\varphi}\), the term \(\psi^{\nu}\) is multi-valued for real \(\nu\). Taking the real branch gives \(\psi^{\nu} = \left(\frac{1}{\varphi}\right)^{\nu}\cos(\nu\pi)\), which reproduces the integer Binet formula exactly because \(\cos(n\pi) = (-1)^n\).

Decomposition of the formula into a growth term and an oscillating decay term
\(F(\nu)\) combines a growing \(\varphi^{\nu}\) term with a decaying, cosine-modulated term divided by root five.
Smooth continuous curve passing through the integer Fibonacci points
The real-valued Fibonacci function \(F(\nu)\) forms a smooth curve that passes through the classic integer Fibonacci values.

How to use it

Enter the Initial value of index \(\nu\) (the first row's \(\nu\)), the Increment (how much \(\nu\) changes per row, which may be negative), and the Number of repetitions (how many rows). The calculator lists \(F(\nu)\) for each \(\nu_k = \text{startIndex} + k\cdot\text{stepSize}\) and highlights the first and last values.

Worked example

At \(\nu = 10\): \(\varphi^{10} \approx 122.9919\) and \(\left(\frac{1}{\varphi}\right)^{10} \approx 0.00813\), with \(\cos(10\pi) = 1\). So $$F(10) = \frac{122.9919 - 0.00813}{\sqrt5} = 55,$$ matching the tenth Fibonacci number. At \(\nu = 0.5\), \(\cos(0.5\pi) = 0\), so $$F(0.5) = \frac{\varphi^{0.5}}{\sqrt5} \approx 0.568864.$$

FAQ

Does it return the usual Fibonacci numbers? Yes — at every integer index it reduces to the standard Binet formula, including negative-index "negafibonacci" values.

Why use \(\cos(\nu\pi)\)? It is the real branch of \(\psi^{\nu}\) and supplies the alternating sign that makes integer indices exact.

Are other extensions possible? Yes; complex-valued and sine-based analytic continuations exist. This calculator uses the specific real-branch extension \(F(\nu) = \frac{\varphi^{\nu} - \left(\frac{1}{\varphi}\right)^{\nu}\cos(\nu\pi)}{\sqrt5}\).

Last updated: