cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A193159 Numbers having in binary representation longest palindromic subwords not longer than 3.

Original entry on oeis.org

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

Views

Author

Reinhard Zumkeller, Jul 16 2011

Keywords

Comments

A050430(a(n)) <= 3, 1 <= n <= 26.

Programs

  • Haskell
    a193159 n = a193159_list !! (n-1)
    a193159_list = map (+ 1) $ findIndices (<= 3) a050430_list