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.

A248387 a(n) = index of n-th prime in A247665.

Original entry on oeis.org

1, 2, 4, 5, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81
Offset: 1

Views

Author

Russ Cox and N. J. A. Sloane, Oct 16 2014

Keywords

Crossrefs

Subsequence of A248918.

Programs

  • Haskell
    import Data.List (elemIndex); import Data.Maybe (fromJust)
    a248387 = (+ 1) . fromJust . (`elemIndex` a247665_list) . a000040
    -- Reinhard Zumkeller, Oct 16 2014