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!)
A364783 Order of the symplectic group of 6 X 6 matrices over Z_n. 1
1, 1451520, 9170703360, 3044058071040, 457002000000000, 13311459341107200, 546914437209907200, 6383852471797678080, 95928796265538862080, 663347543040000000000, 7338585441586912128000, 27916153580121646694400, 245593958671812227742720, 793857243898924498944000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Let M be any fixed nonsingular skew-symmetric 6 X 6 matrix over the integers mod n. Then a(n) is the number of invertible 6 X 6 matrices A over the integers mod n such that A^T * M * A = M, where A^T denotes the transpose of A.
LINKS
E. Artin, Geometric Algebra, Wiley Classics Library. John Wiley & Sons, Inc., New York, 1988. Reprint of the 1957 original, A Wiley-Interscience Publication.
Larry C. Grove, Classical Groups and Geometric Algebra, Grad. Stud. Math., 39 American Mathematical Society, Providence, RI, 2002. x+169 pp.
FORMULA
a(n) = Product_{primes p dividing n} p^(21*v_p(n) - 12)*(p^2 - 1)*(p^4 - 1)*(p^6 - 1), where v_p(n) is the largest power k such that p^k divides n.
For primes p : a(p) = A003932(n), where A246655(n) = p.
Sum_{k=1..n} a(k) ~ c * n^22 / 22, where c = Product_{p prime} (1 - 1/p^3 - 1/p^5 + 1/p^9 + 1/p^11 - 1/p^13) = 0.8006965549... . - Amiram Eldar, Aug 08 2023
MATHEMATICA
f[p_, e_] := p^(21*e - 12)*(p^2 - 1)*(p^4 - 1)*(p^6 - 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 15] (* Amiram Eldar, Aug 08 2023 *)
PROG
(Sage)
def a(n):
return product([p^(21*n.valuation(p) - 12)*(p^2 - 1)*(p^4 - 1)*(p^6 - 1)
for p in n.prime_factors()])
CROSSREFS
Sequence in context: A254359 A184789 A003939 * A003932 A364782 A205044
KEYWORD
nonn,mult
AUTHOR
Robin Visser, Aug 07 2023
STATUS
approved

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 July 23 18:56 EDT 2024. Contains 374553 sequences. (Running on oeis4.)