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.

A190133 Inverse permutation to A190132.

Original entry on oeis.org

1, 1886, 3771, 5656, 7541, 9059, 9216, 9373, 9530, 9687, 9844, 2, 159, 316, 473, 630, 787, 944, 1101, 1258, 1415, 1572, 1729, 1887, 2044, 2201, 2358, 2515, 2672, 2829, 2986, 3143, 3300, 3457, 3614, 3772, 3929, 4086, 4243, 4400, 4557, 4714, 4871, 5028, 5185
Offset: 1

Views

Author

Reinhard Zumkeller, May 06 2011

Keywords

Comments

a(A190132(n)) = A190132(a(n)) = n.

Programs

  • Haskell
    import Data.List (elemIndex)
    import Data.Maybe (fromJust)
    a190133 n = a190133_list !! (n-1)
    a190133_list =
       map (succ . fromJust . (`elemIndex` a190132_list)) [1..10000]