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.

A159281 Numerator of Hermite(n, 2/11).

Original entry on oeis.org

1, 4, -226, -2840, 152716, 3359984, -171346424, -5564082464, 268004512400, 11844081699904, -536337501207584, -30808027718598016, 1304498317340196544, 94684505764169424640, -3725213683295580628864, -335691960262188333195776, 12179757829314204349993216
Offset: 0

Views

Author

N. J. A. Sloane, Nov 12 2009

Keywords

Comments

Denominator is 11^n. - Robert Israel, May 21 2014

Crossrefs

Cf. A159280.

Programs

Formula

a(n) = 4*a(n-1) - 242*(n-1)*a(n-2) for n >= 2.
E.g.f.: exp(-11*x^2 + 4*x). - Robert Israel, May 21 2014
From G. C. Greubel, Jun 27 2018: (Start)
a(n) = 11^n * Hermite(n, 2/11).
a(n) = numerator(Sum_{k=0..floor(n/2)} (-1)^k*n!*(4/11)^(n-2*k)/(k!*(n-2*k)!)). (End)