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!)
A305407 Expansion of e.g.f. 1/(1 + log(1 - x)*exp(x)). 3
1, 1, 5, 32, 274, 2939, 37833, 568210, 9753280, 188342949, 4041170695, 95380234366, 2455830637412, 68501591450447, 2057726452045145, 66227424015265178, 2273614433910697920, 82932491842062712873, 3202994529476330549163, 130577628147690206429038, 5603479009890212632226756 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n! / ((1 + exp(r)/r) * (1 - exp(-r))^(n+1)), where r = 0.62747017959751658496114808922921433658821962606026068561095... is the root of the equation r*exp(1 - exp(-r)) = 1. - Vaclav Kotesovec, Mar 26 2019
a(0) = 1; a(n) = Sum_{k=1..n} A002104(k) * binomial(n,k) * a(n-k). - Seiichi Manyama, May 04 2022
EXAMPLE
E.g.f.: A(x) = 1 + x + 5*x^2/2! + 32*x^3/3! + 274*x^4/4! + 2939*x^5/5! + 37833*x^6/6! + ...
MAPLE
a:=series(1/(1+log(1-x)*exp(x)), x=0, 21): seq(n!*coeff(a, x, n), n=0..20); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[1/(1 + Log[1 - x] Exp[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[HypergeometricPFQ[{1, 1, 1 - k}, {2}, -1] a[n - k]/(k - 1)!, {k, 1, n}]; Table[n! a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A166993 A328055 A265130 * A320349 A354013 A331660
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 31 2018
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 24 11:16 EDT 2024. Contains 371936 sequences. (Running on oeis4.)