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”).

A195066
Numbers n such that BCR(n) is not less than n, where BCR = binary-complement-and-reverse = A036044.
6
0, 2, 4, 8, 10, 12, 16, 18, 20, 24, 32, 34, 36, 38, 40, 42, 44, 48, 52, 56, 64, 66, 68, 70, 72, 74, 76, 80, 82, 84, 88, 92, 96, 100, 104, 112, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 160, 162, 164, 168, 170, 172, 176, 178
OFFSET
1,2
COMMENTS
A035928(a(n)) >= n.
LINKS
PROG
(Haskell)
a195066 n = a195066_list !! (n-1)
a195066_list = filter (\x -> a036044 x >= x) [0, 2..]
CROSSREFS
Sequence in context: A308357 A047464 A189786 * A036990 A097498 A346502
KEYWORD
nonn,base,look
AUTHOR
Reinhard Zumkeller, Sep 16 2011
STATUS
approved