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.

Showing 1-2 of 2 results.

A138077 Index of the largest maximal subgroup of PSL(3,q) as q runs through the prime powers (A000961).

Original entry on oeis.org

7, 13, 21, 31, 57, 73, 91, 133
Offset: 1

Views

Author

John Cannon and N. J. A. Sloane, Dec 06 2009

Keywords

Comments

First eight entries agree with the ATLAS. - Eric M. Schmidt, Apr 21 2013
Is this sequence simply A335865 starting with the second term? - Max Alekseyev, Apr 04 2022

Crossrefs

Cf. A000961, A003807 (order of PSL(3,q)), A335865.

Programs

  • Sage
    def a138077_q(q): G = PSL(3,q); d = G.order(); return d // max(H.order() for H in G.conjugacy_classes_subgroups() if H.order()Max Alekseyev, Apr 05 2022

Extensions

a(3) corrected by Eric M. Schmidt, Apr 20 2013
Unconfirmed terms from a(9) onward removed by Max Alekseyev, Apr 05 2022

A138082 Number of conjugacy classes of subgroups of PSL(3,q) as q runs through the prime powers (A246655).

Original entry on oeis.org

15, 51, 95, 140, 137, 206, 428, 315, 284, 7065, 568, 453, 439, 1233, 1560, 887, 571
Offset: 1

Views

Author

John Cannon and N. J. A. Sloane, Dec 06 2009

Keywords

Crossrefs

Programs

  • GAP
    List(Filtered([2..50], IsPrimePowerInt), q->Length(ConjugacyClassesSubgroups(PSL(3,q))));  # Robin Visser, Aug 10 2023
    
  • Magma
    [#Subgroups(PSL(3,q)) : q in [2..50] | IsPrimePower(q)];  // Robin Visser, Aug 10 2023
    
  • Sage
    [len(PSL(3,q).conjugacy_classes_subgroups()) for q in range(2, 50) if Integer(q).is_prime_power()]  # Robin Visser, Aug 10 2023

Extensions

Corrected by Robin Visser, Aug 10 2023
Showing 1-2 of 2 results.