OFFSET
1,2
COMMENTS
Previous name was: A Fibbinary system represents a number as a sum of distinct Fibonacci numbers (instead of distinct powers of two). Using representations without adjacent zeros, a(n) = the highest bit-position which changes going from n-1 to n.
A003754(n), when written in binary, is the representation of n.
Often one uses Fibbinary representations without adjacent ones (the Zeckendorf expansion).
a(A000071(n+3)) = n. - Reinhard Zumkeller, Aug 10 2014
From Gus Wiseman, Jul 24 2025: (Start)
Conjecture: To obtain this sequence, start with A245563 (maximal run lengths of binary indices), then remove empty and duplicate rows (giving A385817), then take the first term of each remaining row. Some variations:
- For sum instead of first term we appear to have A200648.
- For length instead of first term we appear to have A200650+1.
- For last instead of first term we have A385892.
(End)
REFERENCES
Jay Kappraff, Beyond Measure: A Guided Tour Through Nature, Myth and Number, World Scientific, 2002, page 460.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
27 is represented 110111, 28 is 111010; the fourth position changes, so a(28)=4.
PROG
(Haskell)
a083368 n = a083368_list !! (n-1)
a083368_list = concat $ h $ drop 2 a000071_list where
h (a:fs@(a':_)) = (map (a035612 . (a' -)) [a .. a' - 1]) : h fs
-- Reinhard Zumkeller, Aug 10 2014
CROSSREFS
KEYWORD
nonn,base,nice,easy
AUTHOR
Gary W. Adamson, Jun 04 2003
EXTENSIONS
Edited by Don Reble, Nov 12 2005
Shorter name from Joerg Arndt, Jul 27 2025
STATUS
approved
