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.

A262255 Inverse permutation to A262323.

Original entry on oeis.org

1, 5, 10, 16, 20, 24, 28, 32, 36, 2, 3, 4, 9, 15, 21, 23, 29, 31, 37, 6, 8, 7, 11, 17, 19, 25, 27, 33, 35, 12, 14, 18, 13, 41, 46, 39, 48, 50, 52, 42, 22, 26, 40, 43, 44, 56, 64, 54, 66, 45, 30, 34, 47, 55, 59, 58, 60, 62, 80, 57, 38, 70, 49, 65, 61, 69, 68
Offset: 1

Views

Author

Paul Tek, Sep 19 2015

Keywords

Crossrefs

Cf. A262323.
Cf. A262367 (fixed points).

Programs

  • Haskell
    import Data.List (elemIndex); import Data.Maybe (fromJust)
    a262255 = (+ 1) . fromJust . (`elemIndex` a262323_list)
    -- Reinhard Zumkeller, Sep 21 2015