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!)
A158538 a(n) = Hermite(n,12). 1
1, 24, 574, 13680, 324876, 7687584, 181253256, 4257827136, 99650305680, 2323482102144, 53969864949216, 1248807116738304, 28784033772836544, 660845439746357760, 15111905675818836096, 344182063906754049024, 7807012363487532093696, 176354470678684640679936 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The first negative term is a(82). - Georg Fischer, Feb 15 2019
LINKS
FORMULA
From G. C. Greubel, Jul 13 2018: (Start)
E.g.f.: exp(24*x - x^2).
a(n) = 24*a(n-1) - 2*(n-1)*a(n-2). (End)
MATHEMATICA
Table[HermiteH[n, 12], {n, 0, 50}] (* or *) With[{nmax = 50}, CoefficientList[Series[Exp[24*x - x^2], {x, 0, nmax}], x]*Range[0, nmax]!] (* G. C. Greubel, Jul 13 2018 *)
PROG
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Exp(24*x - x^2))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 13 2018
(PARI) x='x+O('x^30); Vec(serlaplace(exp(24*x - x^2))) \\ G. C. Greubel, Jul 13 2018
(PARI) for(n=0, 30, print1(polhermite(n, 12), ", ")) \\ G. C. Greubel, Jul 13 2018
CROSSREFS
Sequence in context: A203487 A007110 A007109 * A171329 A077423 A059061
KEYWORD
easy,sign
AUTHOR
N. J. A. Sloane, Nov 11 2009
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 18 09:53 EDT 2024. Contains 372619 sequences. (Running on oeis4.)