4.0.0 • Published 2 years ago
zeckendorf v4.0.0
zeckendorf
Calculate the Zeckendorf representation of an integer.
Example
var zeckendorf = require('zeckendorf');
zeckendorf(33);
// => 1010101Installation
$ npm install zeckendorfAPI
var zeckendorf = require('zeckendorf');zeckendorf(n)
Calculates and returns the Zeckendorf form of Number n. The returned
Number represents a table of Fibonacci numbers, so zeckendorf(11) returns
10100, which represents: 1*8 + 0*5 + 1*3 + 0*2 + 0*1.