[go: up one dir, main page]

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!)
A346056 Expansion of e.g.f. Product_{k>=1} B(x^k/k!) where B(x) = exp(exp(x) - 1) = e.g.f. of Bell numbers. 4
1, 1, 3, 9, 38, 168, 915, 5225, 34228, 236622, 1805297, 14498751, 125907798, 1146476984, 11129874215, 112934907867, 1209762361679, 13499714095281, 157931096158594, 1918777335806274, 24309294470496502, 318987321135326838, 4346474397776153974 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: exp( Sum_{k>=1} (exp(x^k/k!) - 1) ).
E.g.f.: exp( Sum_{k>=1} A038041(k)*x^k/k! ).
a(n) = (n-1)! * Sum_{k=1..n} k * (Sum_{d|k} 1/(d! * (k/d)!^d)) * a(n-k)/(n-k)! for n > 0.
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, exp(exp(x^k/k!)-1))))
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, exp(x^k/k!)-1))))
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, sumdiv(k, d, 1/(d!*(k/d)!^d))*x^k))))
(PARI) a(n) = if(n==0, 1, (n-1)!*sum(k=1, n, k*sumdiv(k, d, 1/(d!*(k/d)!^d))*a(n-k)/(n-k)!));
CROSSREFS
Sequence in context: A149024 A149025 A351070 * A133222 A103942 A030928
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 02 2021
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 August 30 21:24 EDT 2024. Contains 375550 sequences. (Running on oeis4.)