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.

A053292 Number of nonsingular n X n matrices over GF(5).

Original entry on oeis.org

1, 4, 480, 1488000, 116064000000, 226614960000000000, 11064475422000000000000000, 13506266841692625000000000000000000, 412177498341354683437500000000000000000000000
Offset: 0

Views

Author

Stephen G Penrice, Mar 04 2000

Keywords

Crossrefs

Programs

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

Formula

a(n) = (5^n - 1)*(5^n - 5)*...*(5^n - 5^(n-1)).
a(n) = A109345(n)*A027872(n). - Bruno Berselli, Jan 30 2013
a(n) ~ c * 5^(n^2), where c = A100222. - Amiram Eldar, Jul 06 2025

Extensions

More terms from Vladeta Jovovic, Mar 16 2000