login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Number of endofunctions on [n] whose cycle lengths are multiples of 5.
2

%I #11 Jun 11 2024 01:39:05

%S 1,0,0,0,0,24,720,17640,430080,11022480,302835456,8976567600,

%T 287236730880,9901354268520,366504424366080,14515574208519384,

%U 612912858447052800,27497080096591516320,1306520704652165775360,65556843230110158804960,3464412427539012262035456

%N Number of endofunctions on [n] whose cycle lengths are multiples of 5.

%H Alois P. Heinz, <a href="/A246612/b246612.txt">Table of n, a(n) for n = 0..300</a>

%F E.g.f.: 1/(1+LambertW(-x)^5)^(1/5). - _Vaclav Kotesovec_, Sep 01 2014

%F a(n) ~ n^(n-2/5) * 2^(2/5) * (sqrt(Pi) / (5^(1/5) * Gamma(1/10))) * (1 - 14 * sqrt(2/n) * Gamma(1/10) / (75 * Gamma(3/5))). - _Vaclav Kotesovec_, Sep 01 2014

%p with(combinat):

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

%p `if`(i>n, 0, add(b(n-i*j, i+5)*(i-1)!^j*

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

%p end:

%p a:= a->add(b(j, 5)*n^(n-j)*binomial(n-1, j-1), j=0..n):

%p seq(a(n), n=0..25);

%t CoefficientList[Series[1/(1+LambertW[-x]^5)^(1/5),{x,0,20}],x] * Range[0,20]! (* _Vaclav Kotesovec_, Sep 01 2014 *)

%Y Column k=5 of A246609.

%K nonn

%O 0,6

%A _Alois P. Heinz_, Aug 31 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 21 22:57 EDT 2024. Contains 376090 sequences. (Running on oeis4.)