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!)
A346058 Expansion of e.g.f. Product_{k>=1} exp(1 - exp(x^k/k!)). 4
1, -1, -1, 3, 4, 2, -69, -185, 596, 1482, 22051, -8341, -450570, -1503596, -23829233, 144974757, 150086353, 4859956733, 51013196234, -504522222442, 2572161050316, -58533039862692, 69278113622988, 342581575176372, -25348876024693055, 661312712021911319 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: exp( Sum_{k>=1} (1 - exp(x^k/k!)) ).
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(1-exp(x^k/k!)))))
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, 1-exp(x^k/k!)))))
(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: A210488 A244364 A218610 * A260958 A260965 A278214
KEYWORD
sign
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 May 4 23:42 EDT 2024. Contains 372257 sequences. (Running on oeis4.)