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.

A216183 Numbers m such that A059514(m) = 0.

Original entry on oeis.org

57, 61, 76, 89, 123, 134, 141, 147, 148, 170, 189, 196, 211, 214, 235, 246, 255, 268, 282, 294, 305, 314, 327, 329, 350, 352, 365, 369, 376, 381, 417, 419, 422, 427, 428, 436, 469, 471, 475, 479, 497, 502, 508, 525, 527, 528, 530, 543, 556, 595, 628, 633
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 11 2013

Keywords

Comments

A059514(a(n)) = 0.

Crossrefs

Cf. A214866.

Programs

  • Haskell
    import Data.List (elemIndices)
    a216183 n = a216183_list !! (n-1)
    a216183_list = map (+ 1) $ elemIndices 0 a059514_list