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.

A145437 a(n) = number of elements of order n in simple group Alt(12) of order 239500800.

Original entry on oeis.org

1, 63855, 776600, 3825360, 4809024, 25530120, 570240, 29937600, 26611200, 25945920, 43545600, 21621600, 0, 8553600, 6652800, 0, 0, 0, 0, 11975040, 11404800, 0, 0, 0, 0, 0, 0, 0, 0, 3991680, 0, 0, 0, 0, 13685760
Offset: 1

Views

Author

N. J. A. Sloane, Apr 06 2009

Keywords

Crossrefs

A row of A057740. Cf. A031963.

Programs

  • Magma
    t1:=[0 : n in [1..240]];
    G:=Alt(12);
    t2:=Classes(G);
    for c in t2 do
    t1[c[1]] := t1[c[1]] + c[2];
    end for;
    t1;