A083368 a(n) is the position of the highest one in A003754(n).
1, 2, 1, 3, 2, 1, 4, 1, 3, 2, 1, 5, 2, 1, 4, 1, 3, 2, 1, 6, 1, 3, 2, 1, 5, 2, 1, 4, 1, 3, 2, 1, 7, 2, 1, 4, 1, 3, 2, 1, 6, 1, 3, 2, 1, 5, 2, 1, 4, 1, 3, 2, 1, 8, 1, 3, 2, 1, 5, 2, 1, 4, 1, 3, 2, 1, 7, 2, 1, 4, 1, 3, 2, 1, 6, 1, 3, 2, 1, 5, 2, 1, 4, 1, 3, 2, 1, 9, 2, 1, 4, 1, 3, 2, 1, 6, 1, 3, 2, 1, 5, 2
Offset: 1
Examples
27 is represented 110111, 28 is 111010; the fourth position changes, so a(28)=4.
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
Crossrefs
Programs
-
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
Formula
Extensions
Edited by Don Reble, Nov 12 2005
Shorter name from Joerg Arndt, Jul 27 2025
Comments