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.

A202016 Numbers occurring only once in A063882.

Original entry on oeis.org

2, 3, 4, 7, 10, 13, 16, 19, 24, 28, 31, 36, 40, 46, 50, 54, 60, 64, 70, 74, 78, 84, 90, 94, 98, 104, 107, 110, 114, 118, 122, 126, 132, 138, 142, 146, 152, 155, 158, 162, 166, 172, 178, 182, 186, 192, 195, 198, 202, 206, 212, 216, 219, 224, 227, 234, 238
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 08 2011

Keywords

Comments

A132157(a(n)) = 1.

Programs

  • Haskell
    import Data.List (elemIndices)
    a202016 n = a202016_list !! (n-1)
    a202016_list = map (+ 1) $ elemIndices 1 a132157_list