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-8 of 8 results.

A003787 Order of universal Chevalley group A_n (3).

Original entry on oeis.org

1, 24, 5616, 12130560, 237783237120, 42064805779476480, 67034222101339041669120, 961721214905722855895197286400, 124190524600592082795473760093457612800, 144339416867688029764487130056208182629053235200
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
  • H. S. M. Coxeter and W. O. J. Moser, Generators and Relations for Discrete Groups, 4th ed., Springer-Verlag, NY, reprinted 1984, p. 131.

Crossrefs

Programs

  • Magma
    [&*[(3^n - 3^k): k in [0..n-1]]/2: n in [1..10]]; // Vincenzo Librandi, Sep 19 2015
  • Mathematica
    f[m_, n_] := m^(n (n + 1)/2) Product[m^k - 1, {k, 2, n + 1}];
    f[3, #] & /@ Range[0, 9] (* Michael De Vlieger, Sep 18 2015 *)

Formula

Numbers so far appear to equal A053290(n)/2. - Ralf Stephan, Mar 30 2004
a(n) = A(3,n) where A(q,n) = q^(n*(n+1)/2) * Product_{k=2..n+1}(q^k-1). - Sean A. Irvine, Sep 18 2015
a(n) ~ c * 3^(n*(n+2)), where c = (3/2) * A100220 = 0.840189116891... . - Amiram Eldar, Jul 07 2025

Extensions

One more term from Sean A. Irvine, Sep 18 2015

A053293 Number of nonsingular n X n matrices over GF(7).

Original entry on oeis.org

1, 6, 2016, 33784128, 27811094169600, 1122211189922928537600, 2218959336124989671614429593600, 214992513152176999576908105619651923148800, 1020690003311610463765638355505358381593396977336320000, 237443634207909205360438080389756681126654524500073656592021585920000
Offset: 0

Views

Author

Stephen G Penrice, Mar 04 2000

Keywords

Crossrefs

Programs

  • Magma
    [1] cat [&*[(7^n - 7^k): k in [0..n-1]]: n in [1..7]]; // Bruno Berselli, Jan 28 2013
    
  • Mathematica
    Table[Product[7^n - 7^k, {k, 0, n-1}], {n, 0, 10}] (* Vincenzo Librandi, Jan 28 2013 *)
  • PARI
    for(n=0,10, print1(prod(k=0,n-1, 7^n - 7^k), ", ")) \\ G. C. Greubel, May 31 2018

Formula

a(n) = (7^n - 1)*(7^n - 7)*...*(7^n - 7^(n-1)).
a(n) = A109493(n)*A027875(n). - Bruno Berselli, Jan 30 2013
a(n) ~ c * 7^(n^2), where c = A132035. - Amiram Eldar, Jul 06 2025

Extensions

More terms from Vladeta Jovovic, Mar 16 2000

A003789 Order of universal Chevalley group A_n (5).

Original entry on oeis.org

1, 120, 372000, 29016000000, 56653740000000000, 2766118855500000000000000, 3376566710423156250000000000000000, 103044374585338670859375000000000000000000000
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
  • H. S. M. Coxeter and W. O. J. Moser, Generators and Relations for Discrete Groups, 4th ed., Springer-Verlag, NY, reprinted 1984, p. 131.

Crossrefs

Programs

  • Magma
    [&*[(5^n-5^k): k in [0..n-1]]/4: n in [1..8]]; // Vincenzo Librandi, Sep 19 2015
  • Mathematica
    f[m_, n_] := m^(n (n + 1)/2) Product[m^k - 1, {k, 2, n + 1}]; f[5, #] & /@ Range[0, 7] (* Michael De Vlieger, Sep 18 2015 *)

Formula

Numbers so far appear to equal A053292(n)/4. - Ralf Stephan, Mar 30 2004
a(n) = A(5,n) where A(q,n) is defined in A003787. - Sean A. Irvine, Sep 18 2015
a(n) ~ c * 5^(n*(n+2)), where c = (5/4) * A100222 = 0.950415994839... . - Amiram Eldar, Jul 07 2025

A003792 Order of universal Chevalley group A_n (9).

Original entry on oeis.org

1, 720, 42456960, 203039372390400, 78660280796419613491200, 2468438315722201136962330755072000, 6274437692242927471137606015213542491815936000, 1291851049702792234730057308758464452124128263449062932480000
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
  • H. S. M. Coxeter and W. O. J. Moser, Generators and Relations for Discrete Groups, 4th ed., Springer-Verlag, NY, reprinted 1984, p. 131.

Crossrefs

Programs

  • Magma
    [&*[(9^n - 9^k): k in [0..n-1]]/8: n in [1..10]]; // Vincenzo Librandi, Sep 19 2015
  • Mathematica
    f[m_, n_] := m^(n (n + 1)/2) Product[m^k - 1, {k, 2, n + 1}];
    f[9, #] & /@ Range[0, 7] (* Michael De Vlieger, Sep 18 2015 *)

Formula

Numbers so far appear to equal A052497(n)/8. - Ralf Stephan, Mar 30 2004
a(n) = A(9,n) where A(q,n) is defined in A003787. - Sean A. Irvine, Sep 18 2015
a(n) ~ c * 9^(n*(n+2)), where c = (9/8) * A132037 = 0.9861303982904... . - Amiram Eldar, Jul 07 2025

Extensions

a(7) from Sean A. Irvine, Sep 18 2015

A003788 Order of universal Chevalley group A_n (4).

Original entry on oeis.org

1, 60, 60480, 987033600, 258492255436800, 1083930404878024704000, 72736898347485916060188672000, 78099458182389588115529148326215680000, 1341733356588640095264385107865053233298800640000
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
  • H. S. M. Coxeter and W. O. J. Moser, Generators and Relations for Discrete Groups, 4th ed., Springer-Verlag, NY, reprinted 1984, p. 131.

Crossrefs

Programs

  • Magma
    [&*[(4^n - 4^k): k in [0..n-1]]/3: n in [1..8]]; // Vincenzo Librandi, Sep 19 2015
  • Mathematica
    f[m_, n_] := m^(n (n + 1)/2) Product[m^k - 1, {k, 2, n + 1}];
    f[4, #] & /@ Range[0, 8] (* Michael De Vlieger, Sep 18 2015 *)

Formula

Numbers so far appear to equal A053291(n)/3. - Ralf Stephan, Mar 30 2004
a(n) = A(4,n) where A(q,n) is defined in A003787. - Sean A. Irvine, Sep 18 2015
a(n) ~ c * 4^(n*(n+2)), where c = (4/3) * A100221 = 0.918050049493... . - Amiram Eldar, Jul 07 2025

Extensions

One more term from Sean A. Irvine, Sep 18 2015

A003791 Order of universal Chevalley group A_n (8).

Original entry on oeis.org

1, 504, 16482816, 34558531338240, 4638226007491010887680, 39841906041871272087686291128320, 21903309038581548352789123727634573903790080
Offset: 0

Views

Author

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
  • H. S. M. Coxeter and W. O. J. Moser, Generators and Relations for Discrete Groups, 4th ed., Springer-Verlag, NY, reprinted 1984, p. 131.

Crossrefs

Programs

  • Magma
    [&*[(8^n - 8^k): k in [0..n-1]]/7: n in [1..8]]; // Vincenzo Librandi, Sep 19 2015
  • Mathematica
    f[m_, n_] := m^(n (n + 1)/2) Product[m^k - 1, {k, 2, n + 1}]; f[8, #] & /@ Range[0, 6] (* Michael De Vlieger, Sep 18 2015 *)

Formula

Numbers so far appear to equal A052496(n)/7. - Ralf Stephan, Mar 30 2004
a(n) = A(8,n) where A(q,n) is defined in A003787. - Sean A. Irvine, Sep 18 2015
a(n) ~ c * 8^(n*(n+2)), where c = (8/7) * A132036 = 0.982178279315... . - Amiram Eldar, Jul 07 2025

A316623 Array read by antidiagonals: T(n,k) is the order of the group SL(n,Z_k).

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 24, 168, 1, 1, 1, 48, 5616, 20160, 1, 1, 1, 120, 43008, 12130560, 9999360, 1, 1, 1, 144, 372000, 660602880, 237783237120, 20158709760, 1, 1, 1, 336, 943488, 29016000000, 167761422581760, 42064805779476480, 163849992929280, 1
Offset: 0

Views

Author

Andrew Howroyd, Jul 08 2018

Keywords

Comments

All rows are multiplicative.
Equivalently, the number of n X n matrices mod k with determinant 1.
Also, for k prime (but not higher prime powers) the number of n X n matrices over GF(k) with determinant 1.

Examples

			Array begins:
==============================================================
n\k| 1       2        3         4           5           6
---+----------------------------------------------------------
0  | 1       1        1         1           1            1 ...
1  | 1       1        1         1           1            1 ...
2  | 1       6       24        48         120          144 ...
3  | 1     168     5616     43008      372000       943488 ...
4  | 1   20160 12130560 660602880 29016000000 244552089600 ...
5  | 1 9999360 ...
...
		

Crossrefs

Rows n=2..4 are A000056, A011785, A011786.
Columns k=2..5, 7 are A002884, A003787, A011787, A003789, A003790.
Cf. A316622.

Programs

  • GAP
    T:=function(n,k) if k=1 or n=0 then return 1; else return Order(SL(n, Integers mod k)); fi; end;
    for n in [0..5] do Print(List([1..6], k->T(n,k)), "\n"); od;
    
  • Mathematica
    T[n_, k_] := If[k == 1 || n == 0, 1, k^(n^2-1) Product[1 - p^-j, {p, FactorInteger[k][[All, 1]]}, {j, 2, n}]];
    Table[T[n-k+1, k], {n, 0, 8}, {k, n+1, 1, -1}] // Flatten (* Jean-François Alcover, Sep 19 2019 *)
  • PARI
    T(n,k)={my(f=factor(k)); if(n<1, n==0, k^(n^2-1) * prod(i=1, #f~, my(p=f[i,1]); prod(j=2, n, (1 - p^(-j)))))}

Formula

T(n,p^e) = (p^e)^(n^2-1) * Product_{j=2..n} (1 - 1/p^j) for prime p, n > 0.

A220791 Number of nonsingular n X n matrices over GF(13).

Original entry on oeis.org

1, 12, 26208, 9726417792, 610296923230525440, 6471875909051511775903457280, 11598637276362103019770723830073032376320, 3512938445418644176053176560741858449740612202579886080
Offset: 0

Views

Author

Vincenzo Librandi, Jan 29 2013

Keywords

Crossrefs

Programs

  • Magma
    [1] cat [&*[(13^n - 13^k): k in [0..n-1]]: n in [1..8]];
  • Mathematica
    Table[Product[13^n - 13^k, {k, 0, n-1}], {n, 0, 8}]
Showing 1-8 of 8 results.