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!)
A356542 Expansion of e.g.f. Product_{k>0} 1/(1 - k! * x^k)^(1/k!). 1
1, 1, 4, 18, 132, 900, 11160, 100800, 1809360, 25053840, 608428800, 8610386400, 469291838400, 7110609105600, 404607162960000, 13958116204032000, 821937470818464000, 17420311428103584000, 2860701872247483264000, 60029296274562398784000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..n} A356541(k) * a(n-k)/(n-k)!.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-k!*x^k)^(1/k!))))
(PARI) a356541(n) = sumdiv(n, d, d*d!^(n/d-1));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=1, i, a356541(j)*v[i-j+1]/(i-j)!)); v;
CROSSREFS
Sequence in context: A034517 A294462 A194559 * A371038 A065857 A214647
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 11 2022
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 May 8 19:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)