[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A378280
Number of subgroups of S_n isomorphic to S_4, where S_n is the n-th symmetric group.
4
0, 0, 0, 1, 5, 60, 560, 5740, 58716, 734160, 8337120, 133212420, 1769490580
OFFSET
1,5
PROG
(GAP) A378280 := function(n)
local S;
S := SymmetricGroup(n);
return Sum(IsomorphicSubgroups(S, SymmetricGroup(4)), x->Index(S, Normalizer(S, Image(x))));
end; # See A378163
CROSSREFS
Column k=4 of A378163.
Sequence in context: A059602 A290747 A212700 * A099672 A320361 A138134
KEYWORD
nonn,hard,more
AUTHOR
Jianing Song, Nov 21 2024
STATUS
approved