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.

A031963 a(n) = number of elements of order n in simple group L_2(7) of order 168.

Original entry on oeis.org

1, 21, 56, 42, 0, 0, 48
Offset: 1

Views

Author

N. J. A. Sloane, Apr 06 2009

Keywords

References

  • H. Ferguson and C. Ferguson, Eightfold way: the sculpture, pp. 133-173 in S. Levy, ed., The Eightfold Way, Cambridge, 1999. (Beware errors!)

Programs

  • Magma
    t1:=[0 : n in [1..7]]; G:=PSL(2,7); for g in G do t1[Order(g)]:=t1[Order(g)]+1; end for; t1; // See A145437 for a much better program!