The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088437 Number of n X n orthogonal matrices over GF(2) modulo permutations of rows. 1

%I #19 Feb 19 2021 04:52:39

%S 1,1,1,2,6,32,288,4608,130560,6684672,621674496,106099113984,

%T 33421220904960,19556188689530880,21359269286705627136,

%U 43743783499173124374528,168632285389312394463805440,1227942828363775231508883701760,16941927202935006869128068433182720,444122456468619444070070837134825095168

%N Number of n X n orthogonal matrices over GF(2) modulo permutations of rows.

%C Also the number of distinct self-dual bases for GF(2^n) over GF(2). - _Max Alekseyev_, Feb 11 2008

%H Max Alekseyev, <a href="http://home.gwu.edu/~maxal/gpscripts/">PARI scripts</a>

%H Joerg Arndt, <a href="http://www.jjj.de/fxt/#fxtbook">Matters Computational (The Fxtbook)</a>, see p. 910.

%H Dieter Jungnickel, Alfred J. Menezes and Scott A. Vanstone, <a href="https://doi.org/10.1090/S0002-9939-1990-1007501-X">On the Number of Self-Dual Bases of GF(q^m) Over GF(q)</a>, Proc. Amer. Math. Soc. 109 (1990), 23-29.

%F a(n) = A003053(n) / n!.

%o (PARI)

%o /* based on http://home.gwu.edu/~maxal/gpscripts/nsdb.gp by Max Alekseyev */

%o sd(m,q) =

%o /* Number of distinct self-dual bases of GF(q^m) over GF(q) where q is a power of prime */

%o {

%o if ( q%2 && !(m%2), return(0) );

%o return ( (q%2 + 1) * prod(i=1,m-1, q^i - (i+1)%2) / m! );

%o }

%o vector(66, n, sd(n,2)) /* _Joerg Arndt_, Jul 03 2011 */

%Y Cf. A053601, A135488.

%K nonn

%O 1,4

%A Yuval Dekel (dekelyuval(AT)hotmail.com), Nov 09 2003

%E More terms from _Max Alekseyev_, Feb 11 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 17 11:50 EDT 2024. Contains 373445 sequences. (Running on oeis4.)