login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130311 Maximal (or "lazy") Lucas representation of n. Binary system for representing integers using Lucas numbers (A000032) as a base. 13
0, 10, 1, 11, 110, 101, 111, 1011, 1110, 1101, 1111, 10110, 10101, 10111, 11011, 11110, 11101, 11111, 101011, 101110, 101101, 101111, 110110, 110101, 110111, 111011, 111110, 111101, 111111, 1010110, 1010101, 1010111, 1011011, 1011110, 1011101, 1011111, 1101011, 1101110 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
Edouard Zeckendorf, Représentation des nombres naturels par une somme des nombres de Fibonacci ou de nombres de Lucas, Bull. Soc. Roy. Sci. Liège, Vol. 41 (1972), pp. 179-182.
LINKS
EXAMPLE
a(7) = 1110 because 4 + 3 + 1 = 8.
a(8) = 1101 because 4 + 3 + 2 = 9.
MATHEMATICA
lazy = Select[IntegerDigits[Range[10^2], 2], SequenceCount[#, {0, 0}] == 0 &]; t = Total[# * Reverse@LucasL[Range[0, Length[#] - 1]]] & /@ lazy; Join[{0}, FromDigits /@ lazy[[TakeWhile[Flatten[FirstPosition[t, #] & /@ Range[Max[t]]], NumberQ]]]] (* Amiram Eldar, Feb 17 2022 *)
CROSSREFS
Sequence in context: A164899 A164844 A287015 * A063672 A070606 A332803
KEYWORD
nonn,base
AUTHOR
Casey Mongoven, May 21 2007; corrected Mar 23 2008
EXTENSIONS
a(0) and more terms from Amiram Eldar, Feb 17 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 19:48 EDT 2024. Contains 371754 sequences. (Running on oeis4.)