The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A285861 Number of permutations of [n] with ten ordered cycles such that equal-sized cycles are ordered with increasing least elements. 3
1, 550, 71225, 5448300, 355885530, 17364367020, 748875613200, 31800834780000, 1237174959934485, 46053097166277630, 1673378033771898675, 61000413008705597700, 2201843172941618228220, 79401490178154061870920, 2850407051830237872094980 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,2
LINKS
Wikipedia, Permutation
MAPLE
b:= proc(n, i, p) option remember; series(`if`(n=0 or i=1,
(p+n)!/n!*x^n, add(b(n-i*j, i-1, p+j)*(i-1)!^j*combinat
[multinomial](n, n-i*j, i$j)/j!^2*x^j, j=0..n/i)), x, 11)
end:
a:= n-> coeff(b(n$2, 0), x, 10):
seq(a(n), n=10..25);
MATHEMATICA
multinomial[n_, k_List] := n!/Times @@ (k!);
b[n_, i_, p_] := b[n, i, p] = Series[If[n == 0 || i == 1, (p + n)!/n!*x^n, Sum[b[n - i*j, i - 1, p + j]*(i - 1)!^j*multinomial[n, Join[{n - i*j}, Table[i, j]]]/j!^2*x^j, {j, 0, n/i}]], {x, 0, 11}];
a[n_] := Coefficient[b[n, n, 0], x, 10];
Table[a[n], {n, 10, 25}] (* Jean-François Alcover, May 30 2018, from Maple *)
CROSSREFS
Column k=10 of A285849.
Cf. A285925.
Sequence in context: A190075 A234415 A285925 * A034282 A127347 A351664
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Apr 27 2017
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 June 6 04:28 EDT 2024. Contains 373115 sequences. (Running on oeis4.)