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.

A220654 Smallest number that can be written in binary representation in exactly n ways as concatenation of palindromes.

Original entry on oeis.org

0, 3, 9, 7, 17, 23, 34, 15, 33, 39, 55, 47, 66, 88, 72, 31, 65, 71, 103, 79, 133, 111, 152, 95, 130, 136, 215, 176, 277, 144, 273, 63, 129, 135, 199, 143, 443, 207, 284, 159, 261, 280, 239, 223, 588, 260, 264, 191, 258, 376, 272, 336, 627, 431, 529, 352, 532
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 17 2012

Keywords

Comments

A215244(a(n)) = n and A215244(m) < n for m < a(n).

Programs

  • Haskell
    import Data.List (elemIndex)
    import Data.Maybe (fromJust)
    a220654 = fromJust . (`elemIndex` a215244_list)