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.

Showing 1-1 of 1 results.

A177048 Least k such that k^n starts with n in base 2.

Original entry on oeis.org

1, 2, 3, 2, 13, 11, 13, 2, 3, 25, 5, 7, 15, 35, 35, 2, 57, 31, 13, 77, 37, 23, 7, 29, 15, 25, 3, 51, 27, 61, 5, 2, 43, 37, 57, 25, 17, 31, 13, 69, 75, 13, 49, 9, 13, 75, 99, 45, 103, 57, 37, 35, 23, 25, 23, 75, 23, 295, 23, 163, 21, 5, 23, 2, 3, 79, 23, 123, 23, 345, 33, 5, 15
Offset: 1

Views

Author

Vladimir Reshetnikov, May 01 2010

Keywords

Crossrefs

Cf. A177047.

Programs

  • Haskell
    toBinary 0 = []
    toBinary n = toBinary (n `div` 2) ++ [odd n]
    a = [1 + fromJust (findIndex (isPrefixOf (toBinary n)) [toBinary (k ^ n) | k <- [1..]]) | n <- [1..]]

Extensions

More terms from Seiichi Manyama, Dec 22 2019
Showing 1-1 of 1 results.