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.

A062297 Number of distinct Abelian subgroups of the symmetric group S_n.

Original entry on oeis.org

1, 2, 5, 21, 87, 612, 3649, 35515, 289927, 377118, 36947363, 657510251, 7736272845
Offset: 1

Views

Author

Ahmed Fares (ahmedfares(AT)my-deja.com), Jul 02 2001

Keywords

Crossrefs

Programs

  • GAP
    # GAP 4.4
    LoadPackage("sonata");;
    for n in [2,3,4,5,6,7,8,9,10] do
        p := SymmetricGroup(n) ;;
        o := Order(p);
        s := Subgroups(p);
        f := Filtered(s, g -> IsAbelian(g));
        a := Size(f);
        Print(a," ") ;
    od; # R. J. Mathar, May 24 2013

Extensions

a(9)-a(13) added by Liam Naughton