login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A196032
Numbers having at least one zero in base 4 representation.
3
4, 8, 12, 16, 17, 18, 19, 20, 24, 28, 32, 33, 34, 35, 36, 40, 44, 48, 49, 50, 51, 52, 56, 60, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 88, 92, 96, 97, 98, 99, 100, 104, 108, 112, 113, 114, 115, 116, 120, 124, 128
OFFSET
1,1
LINKS
PROG
(Haskell)
a196032 n = a196032_list !! (n-1)
a196032_list = filter f [1..] where
f 0 = False; f x = m == 0 || f x' where (x', m) = divMod x 4
-- Reinhard Zumkeller, Oct 19 2011
CROSSREFS
Cf. A023705 (complement).
Sequence in context: A331061 A020647 A274919 * A130702 A355740 A371089
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Oct 27 2011
STATUS
approved