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!)
A338448 E.g.f.: 1 / (1 - x - log(1 - x)). 1
1, 0, -1, -2, 0, 16, 50, -132, -2184, -9984, 6912, 341760, 38544, -47086272, -702019344, -6076389984, -43980940800, -656377887744, -16782743357568, -368775477229824, -6770025717901056, -118247220867640320, -2271088046291742720, -50203882870716579840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=2..n} binomial(n,k) * (k-1)! * a(n-k).
a(n) ~ -n! / (n * log(n)^2) * (1 - 2*gamma/log(n) + (3*gamma^2 - Pi^2/2)/log(n)^2), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Oct 29 2020
MATHEMATICA
nmax = 23; CoefficientList[Series[1/(1 - x - Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n, k] (k - 1)! a[n - k], {k, 2, n}]; Table[a[n], {n, 0, 23}]
PROG
(PARI) my(x='x + O('x^30)); Vec(serlaplace(1/(1 - x - log(1 - x)))) \\ Michel Marcus, Oct 29 2020
CROSSREFS
Sequence in context: A009266 A009246 A358629 * A012414 A098336 A116093
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Oct 28 2020
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 29 19:05 EDT 2024. Contains 374734 sequences. (Running on oeis4.)