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”).

A378279
Number of subgroups of S_n isomorphic to S_3, where S_n is the n-th symmetric group.
5
0, 0, 1, 4, 20, 160, 910, 5936, 53424, 397440, 3304620, 35023120, 322852816
OFFSET
1,4
FORMULA
a(n) = (A281097(n) - A000085(n))/6. See A378163 for more information.
PROG
(GAP) A378279 := function(n)
local S;
S := SymmetricGroup(n);
return Sum(IsomorphicSubgroups(S, SymmetricGroup(3)), x->Index(S, Normalizer(S, Image(x))));
end;
CROSSREFS
Column k=3 of A378163.
Sequence in context: A058381 A094651 A065526 * A032333 A357666 A366639
KEYWORD
nonn,hard,more,new
AUTHOR
Jianing Song, Nov 21 2024
STATUS
approved