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.

A115408 Integer permutation induced by A024431.

Original entry on oeis.org

1, 6, 15, 3, 2, 5, 4, 28, 45, 10, 66, 9, 14, 91, 13, 8, 7, 120, 12, 11, 153, 190, 21, 231, 276, 20, 325, 378, 435, 496, 27, 561, 630, 26, 703, 19, 780, 18, 861, 946, 1035, 17, 16, 25, 1128, 24, 1225, 1326, 1431, 23, 22, 1540, 1653, 36, 1770, 1891, 2016, 2145
Offset: 1

Views

Author

Reinhard Zumkeller, Jan 22 2006

Keywords

Comments

a(n) = A115406(n)*(A115406(n)-1)/2 + A115407(n) + 1;
inverse: A115409.

Programs

  • Haskell
    import Data.List (elemIndex); import Data.Maybe (fromJust)
    a115408 = (+ 1) . fromJust . (`elemIndex` a115409_list)
    -- Reinhard Zumkeller, Sep 16 2014