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.

A030332 Position of n-th 0 in A003137.

Original entry on oeis.org

4, 10, 16, 17, 19, 22, 26, 35, 43, 44, 46, 49, 53, 62, 70, 71, 72, 74, 75, 78, 79, 82, 84, 86, 90, 94, 96, 98, 102, 107, 108, 111, 115, 120, 132, 143, 144, 147, 151, 156, 168, 178, 179, 180, 182, 183, 186, 187, 190, 192, 194, 198, 202
Offset: 1

Views

Author

Keywords

Comments

A003137(a(n)) = 0. - Reinhard Zumkeller, Feb 21 2013

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndices)
    a030332 n = a030332_list !! (n-1)
    a030332_list = map (+ 1) $ elemIndices 0 a003137_list
    -- Reinhard Zumkeller, Feb 21 2013