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!)
A346121 Number of permutations of [n] whose order is a multiple of n. 1
1, 1, 2, 6, 24, 240, 720, 5040, 40320, 816480, 3628800, 108108000, 479001600, 14789174400, 254431457280, 1307674368000, 20922789888000, 872545722048000, 6402373705728000, 411616608508385280, 7817896752906240000, 128126503414990080000, 1124000727777607680000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Wikipedia, Permutation
FORMULA
a(n) = Sum_{i>=1} A057731(n,i*n).
a(n) = (n-1)! <=> n in { A000961 }.
a(n) = A057731(n,n) = A074351(n) = A052699(n-1) for n <= 9.
MAPLE
b:= proc(n, g) option remember; `if`(n=0, x^g, add((j-1)!
*b(n-j, ilcm(g, j))*binomial(n-1, j-1), j=1..n))
end:
a:= n-> (p-> add(coeff(p, x, i*n), i=1..degree(p)/n))(b(n, 1)):
seq(a(n), n=1..23);
# second Maple program:
h:= proc(n, j) option remember; uses padic, numtheory; n/mul(`if`(
ordp(j, p)<ordp(n, p), 1, p^ordp(n, p)), p=factorset(igcd(n, j)))
end:
b:= proc(n, m) option remember; `if`(n=0, `if`(m=1, 1, 0),
add((j-1)!*b(n-j, h(m, j))*binomial(n-1, j-1), j=1..n))
end:
a:= n-> b(n$2):
seq(a(n), n=1..23);
MATHEMATICA
b[n_, g_] := b[n, g] = If[n == 0, x^g, Sum[(j - 1)!*b[n - j, LCM[g, j]]* Binomial[n - 1, j - 1], {j, 1, n}]] // Expand;
a[n_] := With[{p = b[n, 1]}, Sum[Coefficient[p, x, i*n], {i, 1, Exponent[p, x]/n}]];
Array[a, 40] (* Jean-François Alcover, Aug 23 2021, after Alois P. Heinz's first program *)
CROSSREFS
Sequence in context: A052699 A074351 A352060 * A052597 A052632 A052692
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 05 2021
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 September 5 00:56 EDT 2024. Contains 375685 sequences. (Running on oeis4.)