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!)
A332928 Number of entries in the n-th cycles of all permutations of [2n] when cycles are ordered by decreasing lengths. 3

%I #15 Apr 23 2021 08:20:33

%S 3,21,341,9185,343909,16379573,944353801,63852563521,4951434599465,

%T 433032539982493,42157340180935341,4520992861815018433,

%U 529496439697454958221,67241241156753850936501,9202393011905666532976785,1350146007561231136610441985

%N Number of entries in the n-th cycles of all permutations of [2n] when cycles are ordered by decreasing lengths.

%H Alois P. Heinz, <a href="/A332928/b332928.txt">Table of n, a(n) for n = 1..200</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Permutation">Permutation</a>

%F a(n) = A322384(2n,n).

%F a(n) ~ 2^(3*n-1) * c^(2*n) * n^(n - 1/2) / (sqrt(Pi*(c-1)) * (2*c-1)^n * exp(n)), where c = -LambertW(-1,-exp(-1/2)/2) = 1.7564312086261696769827376166... - _Vaclav Kotesovec_, Mar 10 2020

%p b:= proc(n, i, t) option remember; `if`(n=0, [1, 0], `if`(i<1, 0,

%p add((p-> p+`if`(t>0 and t-j<1, [0, p[1]*i], 0))((i-1)!^j*

%p b(n-i*j, min(n-i*j, i-1), max(0, t-j))/j!*

%p combinat[multinomial](n, i$j, n-i*j)), j=0..n/i)))

%p end:

%p a:= n-> b(2*n$2, n)[2]:

%p seq(a(n), n=1..17);

%t multinomial[n_, k_List] := n!/Times @@ (k!);

%t b[n_, i_, t_] := b[n, i, t] = If[n == 0, {1, 0}, If[i < 1, {0, 0},

%t Sum[Function[p, p+If[t>0 && t-j<1, {0, p[[1]]*i}, {0, 0}]][(i-1)!^j*

%t b[n - i*j, Min[n - i*j, i - 1], Max[0, t - j]]/j!*

%t multinomial[n, Append[Table[i, {j}], n - i*j]]], {j, 0, n/i}]]];

%t a[n_] := b[2n, 2n, n][[2]];

%t Array[a, 17] (* _Jean-François Alcover_, Apr 23 2021, after _Alois P. Heinz_ *)

%Y Cf. A187661, A285239, A322384.

%K nonn

%O 1,1

%A _Alois P. Heinz_, Mar 02 2020

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 May 15 11:50 EDT 2024. Contains 372540 sequences. (Running on oeis4.)