The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A179243 Numbers that have three terms in their Zeckendorf representation. 12
12, 17, 19, 20, 25, 27, 28, 30, 31, 32, 38, 40, 41, 43, 44, 45, 48, 49, 50, 52, 59, 61, 62, 64, 65, 66, 69, 70, 71, 73, 77, 78, 79, 81, 84, 93, 95, 96, 98, 99, 100, 103, 104, 105, 107, 111, 112, 113, 115, 118, 124, 125, 126, 128, 131, 136, 148, 150, 151, 153, 154, 155 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A007895(a(n)) = 3. - Reinhard Zumkeller, Mar 10 2013
LINKS
EXAMPLE
12 = 1+3+8;
17 = 1+3+13;
19 = 1+5+13;
20 = 2+5+13;
25 = 21+3+1;
MAPLE
with(combinat): B := proc (n) local A, ct, m, j: A := proc (n) local i: for i while fibonacci(i) <= n do n-fibonacci(i) end do end proc: ct := 0: m := n: for j while 0 < A(m) do ct := ct+1: m := A(m) end do: ct+1 end proc: Q := {}: for i from fibonacci(7)-1 to 160 do if B(i) = 3 then Q := `union`(Q, {i}) else end if end do: Q
MATHEMATICA
zeck = DigitCount[Select[Range[2000], BitAnd[#, 2*#] == 0 &], 2, 1];
Position[zeck, 3] // Flatten (* Jean-François Alcover, Jan 30 2018 *)
PROG
(Haskell)
a179243 n = a179243_list !! (n-1)
a179243_list = filter ((== 3) . a007895) [1..]
-- Reinhard Zumkeller, Mar 10 2013
CROSSREFS
Sequence in context: A087657 A248478 A059390 * A350686 A064825 A162918
KEYWORD
nonn,look
AUTHOR
Emeric Deutsch, Jul 05 2010
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 May 20 05:07 EDT 2024. Contains 372703 sequences. (Running on oeis4.)