OFFSET
1,2
COMMENTS
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
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
STATUS
approved