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!)
A345762 E.g.f.: Product_{k>=1} (1 - x^k)^(1/k!). 4
1, -1, -1, 2, 0, 29, -135, 727, -1967, -6074, 94510, 1548051, -41361089, 408842095, 213929807, -41951737904, 130060640466, 10569226878107, -229371598130229, 3327344803563111, -31418096993670379, -383829978086171112, 17799865170898698140, 220582224147105677385 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: exp( -Sum_{k>=1} (exp(x^k) - 1)/k ).
E.g.f.: exp( -Sum_{k>=1} A087906(k)*x^k/k! ).
a(n) = -(n-1)! * Sum_{k=1..n} (Sum_{d|k} 1/(d-1)!) * a(n-k)/(n-k)! for n > 0.
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, (1-x^k)^(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-1)!)*x^k/k))))
(PARI) a(n) = if(n==0, 1, -(n-1)!*sum(k=1, n, sumdiv(k, d, 1/(d-1)!)*a(n-k)/(n-k)!));
CROSSREFS
Sequence in context: A356564 A007218 A092177 * A340534 A104466 A086487
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 26 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 June 28 21:29 EDT 2024. Contains 373804 sequences. (Running on oeis4.)