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.

A193854 Numbers m such that A062039(m) = 1.

Original entry on oeis.org

0, 1, 4, 24, 191, 3096, 3728, 6320, 314102, 9645152, 187895163
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 10 2011

Keywords

Comments

A062039(a(n)) = 1.

Programs

  • Haskell
    import Data.List (elemIndices)
    a193854 n = a193854_list !! (n-1)
    a193854_list = elemIndices 1 a062039_list

Extensions

a(10)-a(11) from Donovan Johnson, Aug 11 2011