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.

A003053 Order of orthogonal group O(n, GF(2)).

This page as a plain text file.
%I A003053 M1716 #91 Jun 14 2024 22:32:08
%S A003053 1,2,6,48,720,23040,1451520,185794560,47377612800,24257337753600,
%T A003053 24815256521932800,50821645356918374400,208114637736580743168000,
%U A003053 1704875112338069448032256000,27930968965434591767112450048000,915241991059360703024740763172864000
%N A003053 Order of orthogonal group O(n, GF(2)).
%D A003053 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].
%D A003053 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H A003053 T. D. Noe, <a href="/A003053/b003053.txt">Table of n, a(n) for n = 1..41</a>
%H A003053 J. H. Conway et al., <a href="http://www.math.colostate.edu/~hulpke/lectures/m601/ATLASClip.pdf">ATLAS of Finite Groups</a>, Chapter 2.
%H A003053 F. J. MacWilliams, <a href="http://www.jstor.org/stable/2317262">Orthogonal matrices over finite fields</a>, Amer. Math. Monthly, 76 (1969), 152-164.
%F A003053 For formulas see Maple code.
%F A003053 Asymptotics: a(n) ~ c * 2^((n^2-n)/2), where c = (1/4; 1/4)_infinity ~ 0.6885375... is expressed in terms of the Q-Pochhammer symbol. - _Cedric Lorand_, Aug 07 2017
%p A003053 h:=proc(n) local m;
%p A003053 if n mod 2 = 0 then m:=n/2;
%p A003053 2^(m^2)*mul( 4^i-1, i=1..m);
%p A003053 else m:=(n+1)/2;
%p A003053 2^(m^2)*mul( 4^i-1, i=1..m-1);
%p A003053 fi;
%p A003053 end;
%p A003053 # This produces a(n+1)
%t A003053 h[n_] := Module[{m}, If[EvenQ[n], m = n/2; 2^(m^2)*Product[4^i-1, {i, 1, m}], m = (n+1)/2; 2^(m^2)*Product[4^i-1, {i, 1, m-1}]]];
%t A003053 a[n_] := h[n-1];
%t A003053 Array[a, 16] (* _Jean-François Alcover_, Aug 18 2022, after Maple code *)
%o A003053 (PARI) a(n) = n--; if (n % 2, m = (n+1)/2; 2^(m^2)*prod(k=1, m-1, 4^k-1), m = n/2; 2^(m^2)*prod(k=1, m, 4^k-1)); \\ _Michel Marcus_, Jul 13 2017
%o A003053 (Python)
%o A003053 def size_binary_orthogonal_group(n):
%o A003053     k = n-1
%o A003053     if k%2==0:
%o A003053         m=k//2
%o A003053         p=2**(m**2)
%o A003053         for i in range(1,m+1):
%o A003053             p*=4**i-1
%o A003053     else:
%o A003053         m=(k+1)//2
%o A003053         p=2**(m**2)
%o A003053         for i in range(1,m):
%o A003053             p*=4**i-1
%o A003053     return p
%o A003053 #call and print output for a(n)
%o A003053 print([size_binary_orthogonal_group(n) for n in range(1, 10)])
%o A003053 # _Nathan J. Russell_, Nov 01 2017
%o A003053 (Python)
%o A003053 from math import prod
%o A003053 def A003053(n): return (1 << (n//2)**2)*prod((1 << i)-1 for i in range(2,2*((n-1)//2)+1,2)) # _Chai Wah Wu_, Jun 20 2022
%Y A003053 Bisections give A003923 and A090770.
%K A003053 nonn,easy
%O A003053 1,2
%A A003053 _N. J. A. Sloane_
%E A003053 Edited by _N. J. A. Sloane_, Dec 30 2008
%E A003053 Edited by _W. Edwin Clark_ et al., Jan 15 2015