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.

A052496 Number of nonsingular n X n matrices over GF(8).

Original entry on oeis.org

1, 7, 3528, 115379712, 241909719367680, 32467582052437076213760, 278893342293098904613804037898240, 153323163270070838469523866093442017326530560
Offset: 0

Views

Author

Vladeta Jovovic, Mar 16 2000

Keywords

Crossrefs

Programs

  • Magma
    [1] cat [&*[(8^n-8^k): k in [0..n-1]]: n in [1..10]]; // Bruno Berselli, Jan 30 2013
    
  • Mathematica
    Table[Product[(8^n - 8^j), {j, 0, n-1}], {n, 0, 10}] (* G. C. Greubel, May 14 2019 *)
  • PARI
    {a(n) = prod(j=0,n-1, 8^n - 8^j)}; \\ G. C. Greubel, May 14 2019
    
  • Sage
    [product(8^n - 8^j for j in (0..n-1)) for n in (0..10)] # G. C. Greubel, May 14 2019

Formula

a(n) = (8^n - 1)*(8^n - 8)*...*(8^n - 8^(n-1)).
a(n) = A109966(n)*A027876(n). - Bruno Berselli, Jan 30 2013
a(n) ~ c * 8^(n^2), where c = A132036. - Amiram Eldar, Jul 06 2025