The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A293117 E.g.f.: exp(x^2/(x-1)). 3
1, 0, -2, -6, -12, 0, 240, 2520, 21840, 181440, 1481760, 11642400, 80498880, 311351040, -4739454720, -183437654400, -4300276780800, -88851284121600, -1754954007206400, -34107089784768000, -659574028252339200, -12724865943229440000, -244046146272658329600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
D-finite with recurrence a(n) = (2*n-2)*a(n-1) - (n^2-n)*a(n-2) + (n^2-3*n+2)*a(n-3). - Robert Israel, Apr 29 2021
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, -add(
a(n-j)*binomial(n-1, j-1)*j!, j=2..n))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Sep 30 2017
MATHEMATICA
CoefficientList[Series[E^(-x^2/(1-x)), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Sep 30 2017 *)
PROG
(PARI) x='x+O('x^66); Vec(serlaplace(exp(x^2/(x-1))))
CROSSREFS
Column k=1 of A293119.
Cf. A052845.
Sequence in context: A342540 A328449 A293589 * A293122 A014452 A188894
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 30 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 May 27 19:11 EDT 2024. Contains 372882 sequences. (Running on oeis4.)