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!)
A356494 Expansion of e.g.f. Product_{k>0} B(k * x^k) where B(x) = exp(exp(x)-1) = e.g.f. of Bell numbers. 1
1, 1, 6, 35, 327, 2892, 37943, 459895, 7330172, 116054835, 2168292295, 41072348550, 898738816957, 19782331776937, 487091519709590, 12305361661242275, 337777113607935587, 9528258228302443724, 289373132780801591323, 9016757353084706862647 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A354843(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, exp(exp(k*x^k)-1))))
(PARI) a354843(n) = n!*sumdiv(n, d, (n/d)^d/d!);
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, a354843(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A356460 A261073 A261080 * A291595 A268139 A361241
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 09 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 September 5 07:27 EDT 2024. Contains 375686 sequences. (Running on oeis4.)