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.

A065128 Number of invertible n X n matrices mod 4 (i.e., over the ring Z_4).

Original entry on oeis.org

1, 2, 96, 86016, 1321205760, 335522845163520, 1385295986380096143360, 92239345887620476544860815360, 98654363640526679389774053813465907200, 1691558770638735027870457216848672340872423014400, 464518059995994038184379206447729320401459864818351813427200
Offset: 0

Views

Author

Dan Fux (dan.fux(AT)OpenGaia.com or danfux(AT)OpenGaia.com), Nov 14 2001

Keywords

Crossrefs

Column k=4 of A316622.

Programs

  • Mathematica
    a[n_] := 4^(n^2)*Product[1 - 1/2^k, {k, 1, n} ]; Table[ a[n], {n, 0, 10} ]
  • PARI
    for(n=1,11,print(4^(n^2)*prod(k=1,n,(1-1/2^k))))

Formula

a(n) = 4^(n^2) * Product_{k=1..n} (1 - 1/2^k).
a(n) = 2^(n^2) * A002884(n). - Geoffrey Critzer, Feb 04 2018
From Amiram Eldar, Jul 06 2025: (Start)
a(n) = Product_{k=1..n} 2*A060195(k).
a(n) ~ c * 4^(n^2), where c = A048651. (End)

Extensions

More terms from Robert G. Wilson v and Jason Earls, Nov 16 2001