0.2.1 • Published 3 months ago

@stdlib/math-base-special-fibonacci-index v0.2.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

Fibonacci Number Index

NPM version Build Status Coverage Status

Compute the Fibonacci number index.

The Fibonacci number index is given by

where φ is the golden ratio and F > 1.

Installation

npm install @stdlib/math-base-special-fibonacci-index

Usage

var fibonacciIndex = require( '@stdlib/math-base-special-fibonacci-index' );

fibonacciIndex( F )

Computes the Fibonacci number index for F_n > 1.

var n = fibonacciIndex( 2 );
// returns 3

n = fibonacciIndex( 3 );
// returns 4

n = fibonacciIndex( 5 );
// returns 5

If provided either a non-integer or F_n <= 1, the function returns NaN.

var n = fibonacciIndex( -1 );
// returns NaN

n = fibonacciIndex( 3.14 );
// returns NaN

If provided NaN, the function returns NaN.

var n = fibonacciIndex( NaN );
// returns NaN

Examples

var fibonacciIndex = require( '@stdlib/math-base-special-fibonacci-index' );

var F1;
var F2;
var FN;
var n;
var i;

F1 = 1;
F2 = 1;
for ( i = 3; i < 79; i++ ) {
    FN = F1 + F2;
    F1 = F2;
    F2 = FN;
    n = fibonacciIndex( FN );
    console.log( 'n(%d) = %d', FN, n );
}

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.