zeckendorf

Calculate the Zeckendorf representation of an integer


Keywords
fibonacci
License
MIT
Install
npm install zeckendorf@4.0.0

Documentation

zeckendorf

Calculate the Zeckendorf representation of an integer.

Example

var zeckendorf = require('zeckendorf');

zeckendorf(33);
// => 1010101

Installation

$ npm install zeckendorf

API

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.