Given a number, how does one tell how many Fibonacci numbers will be involved in its Zeckendorf representations (i.e. how many "active" bits)?
In base 2, you simply take log-base2 of a number n to get the maximum amount of bits needed to store numbers up to n
How does one apply this to the Zeckendorf representation? Given a number n, how do I tell the maximum number of active bits in its Zeckendorf representation?
Thanks