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

 


A179247
Numbers that have 7 terms in their Zeckendorf representation.
11
609, 842, 931, 965, 978, 983, 985, 986, 1219, 1308, 1342, 1355, 1360, 1362, 1363, 1452, 1486, 1499, 1504, 1506, 1507, 1541, 1554, 1559, 1561, 1562, 1575, 1580, 1582, 1583, 1588, 1590, 1591, 1593, 1594, 1595, 1829, 1918, 1952, 1965, 1970, 1972, 1973
OFFSET
1,1
COMMENTS
A007895(a(n)) = 7. - Reinhard Zumkeller, Mar 10 2013
LINKS
EXAMPLE
609 = 377+144+55+21+8+3+1;
842 = 610+144+55+21+8+3+1;
931 = 610+233+55+21+8+3+1;
965 = 610+233+89+21+8+3+1;
978 = 610+233+89+34+8+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(15)-1 to 2100 do if B(i) = 7 then Q := `union`(Q, {i}) else end if end do: Q;
MATHEMATICA
zeck = DigitCount[Select[Range[4*10^4], BitAnd[#, 2*#] == 0 &], 2, 1];
Position[zeck, 7] // Flatten (* Jean-François Alcover, Jan 30 2018 *)
PROG
(Haskell)
a179247 n = a179247_list !! (n-1)
a179247_list = filter ((== 7) . a007895) [1..]
-- Reinhard Zumkeller, Mar 10 2013
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jul 05 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 13:29 EDT 2024. Contains 376072 sequences. (Running on oeis4.)