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!)
A346057 Expansion of e.g.f. Product_{k>=1} exp(1 - exp(x^k/k)). 4
1, -1, -1, 2, 3, 14, -55, 62, -637, 338, -3861, 335312, -4499803, 43490108, -246353731, 2189950310, -47336985225, 1224524919590, -21516426400621, 346681988108648, -4499477383730851, 69294602646065900, -1418045089870455795, 45246859024830444566 (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} A005225(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: A153741 A070207 A268559 * A371608 A270707 A141148
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 April 16 11:08 EDT 2024. Contains 371711 sequences. (Running on oeis4.)