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!)
A158702 a(n) = Hermite(n, 19). 1
1, 38, 1442, 54644, 2067820, 78140008, 2948642104, 111110719856, 4180926365072, 157097430355040, 5894445678920224, 220846987191867712, 8262507708354728128, 308674965224874843776, 11514823478128021132160 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The first negative term is a(194). - Georg Fischer, Feb 16 2019
LINKS
FORMULA
From G. C. Greubel, Jul 13 2018: (Start)
E.g.f.: exp(38*x - x^2).
a(n) = 38*a(n-1) - 2*(n-1)*a(n-2). (End)
MATHEMATICA
Table[HermiteH[n, 19], {n, 0, 50}] (* or *) With[{nmax = 50}, CoefficientList[Series[Exp[38*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(38*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(38*x - x^2))) \\ G. C. Greubel, Jul 13 2018
(PARI) for(n=0, 30, print1(polhermite(n, 19), ", ")) \\ G. C. Greubel, Jul 13 2018
CROSSREFS
Sequence in context: A170719 A170757 A218740 * A239364 A078987 A009982
KEYWORD
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 8 05:48 EDT 2024. Contains 372319 sequences. (Running on oeis4.)