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.

A063965 Size of the automorphism group of the group S_n x S_n (where S_n is the symmetric group).

This page as a plain text file.
%I A063965 #11 Jul 02 2025 16:02:01
%S A063965 1,6,72,1152,28800,4147200,50803200,3251404800,263363788800,
%T A063965 26336378880000,3186701844480000,458885065605120000,
%U A063965 77551576087265280000,15200108913103994880000
%N A063965 Size of the automorphism group of the group S_n x S_n (where S_n is the symmetric group).
%H A063965 Harry J. Smith, <a href="/A063965/b063965.txt">Table of n, a(n) for n = 1..100</a>
%F A063965 Except for n = 1, 2, and 6, a(n) = A048617(n) = 2*(n!)^2.
%p A063965 a := proc(n) option remember: if n=1 then RETURN(1) fi: if n=2 then RETURN(6) fi: if n=6 then RETURN(4147200) fi: 2*(n!)^2: end: for n from 1 to 30 do printf(`%d,`,a(n)) od:
%o A063965 (PARI) { for (n=1, 100, if (n==1, a=1, if (n==2, a=6, if (n==6, a=4147200, a=2*(n!)^2))); write("b063965.txt", n, " ", a) ) } \\ _Harry J. Smith_, Sep 04 2009
%Y A063965 Cf. A060249, A048617.
%K A063965 nonn
%O A063965 1,2
%A A063965 Ahmed Fares (ahmedfares(AT)my-deja.com), Sep 04 2001
%E A063965 More terms from _James Sellers_, Sep 26 2001