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!)
A291981 a(n) = n! * [x^n] exp(x)/(1 - log(1+x)). 6
1, 2, 4, 9, 23, 70, 244, 1015, 4605, 25090, 137516, 963589, 5832243, 54685670, 310755964, 4567695283, 15162041017, 581160322338, -1133608829900, 115627157052929, -1056546484541681, 34518230044201062, -541838359813821916, 14135169210980556655, -288911084512245360587 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums of A291980.
LINKS
FORMULA
a(n) ~ n! * (-1)^(n+1) * exp(-1) / (log(n)^2 * n) * (1 - 2*(1 + gamma)/log(n)), where gamma is the Euler-Mascheroni constant (A001620). - Vaclav Kotesovec, Sep 18 2017
a(n) = 1 + Sum_{k=0..n-1} (-1)^(n-k-1) * binomial(n,k) * (n-k-1)! * a(k). - Ilya Gutkovskiy, Apr 28 2021
MAPLE
a_list := proc(n) exp(x)/(1 - log(1+x)): series(%, x, n+1):
seq(j!*coeff(%, x, j), j=0..n) end: a_list(24);
MATHEMATICA
nmax = 20; CoefficientList[Series[E^x/(1 - Log[1+x]), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 18 2017 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(exp(x)/(1 - log(1+x)))) \\ G. C. Greubel, Aug 30 2018
CROSSREFS
Cf. A291980.
Sequence in context: A113997 A125789 A058731 * A326908 A229048 A144309
KEYWORD
sign
AUTHOR
Peter Luschny, Sep 16 2017
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 July 24 09:23 EDT 2024. Contains 374583 sequences. (Running on oeis4.)