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!)
A291116 Number of endofunctions on [n] such that the LCM of their cycle lengths equals ten. 2

%I #17 Apr 24 2021 08:45:31

%S 0,0,0,0,0,0,0,504,32256,1460592,59814720,2403157680,98055619200,

%T 4129943329512,180976836968928,8281570545448200,396324506640142080,

%U 19840151844921504096,1038497761573246945152,56790713866712335971552,3241264004352759793685760

%N Number of endofunctions on [n] such that the LCM of their cycle lengths equals ten.

%H Alois P. Heinz, <a href="/A291116/b291116.txt">Table of n, a(n) for n = 0..387</a>

%F a(n) ~ (exp(1) - 2*exp(3/2) - 2*exp(6/5) + 4*exp(9/5)) * n^(n-1). - _Vaclav Kotesovec_, Aug 18 2017

%p b:= proc(n, m) option remember; (k-> `if`(m>k, 0,

%p `if`(n=0, `if`(m=k, 1, 0), add(b(n-j, ilcm(m, j))

%p *binomial(n-1, j-1)*(j-1)!, j=1..n))))(10)

%p end:

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

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

%t Unprotect[Power]; Power[0|0., 0|0.]=1; Protect[Power];b[n_, m_]:=b[n, m]=If[m>10, 0, If[n==0, If[m==10,1, 0], Sum[b[n - j, LCM[m, j]] Binomial[n - 1, j - 1](j - 1)!, {j, n}]]]; Table[Sum[b[j, 1]*n^(n -j) Binomial[n - 1, j - 1], {j, 0, n}], {n, 0, 25}] (* _Indranil Ghosh_, Aug 18 2017 *)

%o (Python)

%o from sympy.core.cache import cacheit

%o from sympy import binomial, lcm, factorial as f

%o @cacheit

%o def b(n, m): return 0 if m>10 else (1 if m==10 else 0) if n==0 else sum([b(n - j, lcm(m, j))*binomial(n - 1, j - 1)*f(j - 1) for j in range(1, n + 1)])

%o def a(n): return sum([b(j, 1)*n**(n - j)*binomial(n - 1, j - 1) for j in range(n + 1)])

%o print([a(n) for n in range(26)]) # _Indranil Ghosh_, Aug 18 2017

%Y Column k=10 of A222029.

%K nonn

%O 0,8

%A _Alois P. Heinz_, Aug 17 2017

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 April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)