Generates the Zeckendorf representation of an integer as a sum of
Fibonacci numbers.
Usage
zeck(n)
Arguments
n
integer.
Value
List with components fibs the Fibonacci numbers that add sum up to
n, and inds their indices in the Fibonacci sequence.
Details
According to Zeckendors theorem from 1972, each integer can be uniquely
represented as a sum of Fibonacci numbers such that no two of these are
consecutive in the Fibonacci sequence.
The computation is simply the greedy algorith of finding the highest
Fibonacci number below n, subtracting it and iterating.