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!)
A246528 Number of endofunctions on [n] whose cycle lengths are divisors of 8. 2

%I #5 Aug 28 2014 20:35:16

%S 1,1,4,25,224,2601,37072,626137,12232320,271494865,6750538496,

%T 185923318329,5619645500416,184961854976185,6585429015521280,

%U 252203521861645561,10338251689510381568,451650823526438037153,20949317446607098716160,1028215744082428119960025

%N Number of endofunctions on [n] whose cycle lengths are divisors of 8.

%H Alois P. Heinz, <a href="/A246528/b246528.txt">Table of n, a(n) for n = 0..350</a>

%F E.g.f.: exp(Sum_{d|8} (-LambertW(-x))^d/d).

%p with(numtheory):

%p egf:= k-> exp(add((-LambertW(-x))^d/d, d=divisors(k))):

%p a:= n-> n!*coeff(series(egf(8), x, n+1), x, n):

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

%p # second Maple program:

%p with(combinat):

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

%p add(multinomial(n, n-i*j, i$j)/j!*b(n-i*j, i-1)*

%p (i-1)!^j, j=0..`if`(irem(8, i)=0, n/i, 0))))

%p end:

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

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

%Y Column k=8 of A246522.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Aug 28 2014

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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)