cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A362278 Expansion of e.g.f. exp(x - 3*x^2/2).

Original entry on oeis.org

1, 1, -2, -8, 10, 106, -44, -1952, -1028, 45820, 73576, -1301024, -3729032, 43107832, 188540080, -1621988864, -10106292464, 67749173008, 583170088672, -3075285253760, -36315980308064, 148201134917536, 2436107894325568, -7345167010231808
Offset: 0

Views

Author

Seiichi Manyama, Apr 13 2023

Keywords

Crossrefs

Column k=3 of A362277.
Cf. A115327.

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[Exp[x-3 x^2/2],{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Apr 18 2023 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x-3*x^2/2)))

Formula

a(n) = a(n-1) - 3*(n-1)*a(n-2) for n > 1.
a(n) = n! * Sum_{k=0..floor(n/2)} (-3/2)^k / (k! * (n-2*k)!).