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!)
A346037 Expansion of e.g.f. Product_{k>=1} B(x^k)^(1/k!) where B(x) = exp(exp(x) - 1) = e.g.f. of Bell numbers. 2
1, 1, 3, 9, 41, 183, 1145, 6835, 52043, 398441, 3577291, 32395905, 342875813, 3603992759, 42817702673, 518311440987, 6897155535843, 93092680608025, 1376879589495555, 20561329595474713, 333009853668160757, 5480574201430489831, 96322698607644959065 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: exp( Sum_{k>=1} (exp(x^k) - 1)/k! ).
E.g.f.: exp( Sum_{k>=1} A121860(k)*x^k/k! ).
a(n) = (n-1)! * Sum_{k=1..n} k * (Sum_{d|k} 1/(d! * (k/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)-1)^(1/k!))))
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, (exp(x^k)-1)/k!))))
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, sumdiv(k, d, 1/(d!*(k/d)!))*x^k))))
(PARI) a(n) = if(n==0, 1, (n-1)!*sum(k=1, n, k*sumdiv(k, d, 1/(d!*(k/d)!))*a(n-k)/(n-k)!));
CROSSREFS
Sequence in context: A027893 A018417 A228478 * A320918 A325289 A274739
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)