Problem 47058. Determine the Zeckendorf expansion of a number
The Goldbach conjecture deals with expressing integers as sums of primes. One might also seek to express integers as sums of other numbers, such as the Fibonacci numbers, which begin 0, 1, 1, 2, 3, 5, 8, 13, 21... For example, 26 can be written as 13+8+5 or 21+3+2. Zeckendorf (and Lekkerkerker before him) showed that every positive integer can be uniquely expressed as the sum of non-consecutive Fibonacci numbers. The Zeckendorf expansion for 26 is 21+5.
Write a function to determine the Zeckendorf expansion of the input number. In particular, output in decreasing order the Fibonacci numbers to be used in the sum.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers14
Suggested Problems
-
3379 Solvers
-
All your base are belong to us
550 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
631 Solvers
-
Count number of words in string
179 Solvers
-
Regular polygon bounded by and bounding a circle
39 Solvers
More from this Author292
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!