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.

A214866 Numbers m such that A059175(m) = 0.

Original entry on oeis.org

0, 84, 102, 141, 167, 173, 228, 246, 250, 358, 366, 372, 388, 421, 424, 444, 502, 599, 610, 617, 640, 653, 660, 685, 804, 865, 866, 867, 875, 920, 941, 1002, 1041, 1059, 1067, 1162, 1186, 1208, 1236, 1238, 1308, 1409, 1445, 1464, 1473, 1523, 1640, 1671, 1757
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 11 2013

Keywords

Comments

A059175(a(n)) = 0.

Crossrefs

Cf. A216183.

Programs

  • Haskell
    import Data.List (elemIndices)
    a214866 n = a214866_list !! (n-1)
    a214866_list = elemIndices 0 a059175_list