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

A193159
Numbers having in binary representation longest palindromic subwords not longer than 3.
2
1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 20, 23, 24, 26, 28, 29, 40, 52, 56, 58, 104, 116, 232
OFFSET
1,2
COMMENTS
A050430(a(n)) <= 3, 1 <= n <= 26.
PROG
(Haskell)
a193159 n = a193159_list !! (n-1)
a193159_list = map (+ 1) $ findIndices (<= 3) a050430_list
CROSSREFS
Sequence in context: A191844 A096157 A066522 * A308018 A242455 A339879
KEYWORD
nonn,base,fini,full
AUTHOR
Reinhard Zumkeller, Jul 16 2011
STATUS
approved