OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Hermite Polynomial
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n) = 16*n^4 - 48*n^2 + 12.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: 4*(-3 +20*x -74*x^2 -44*x^3 +5*x^4)/(x-1)^5.
H_(m+1)(x) = 2*x*H_m(x) - 2*m*H_(m-1)(x), with H_0(x)=1, H_1(x)=2x.
MAPLE
MATHEMATICA
Table[HermiteH[4, n], {n, 0, 50}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
Table[16 n^4 - 48 n^2 + 12, {n, 0, 30}] (* Vincenzo Librandi, Sep 25 2014 *)
LinearRecurrence[{5, -10, 10, -5, 1}, {12, -20, 76, 876, 3340}, 40] (* Harvey P. Dale, Jul 03 2019 *)
PROG
(Magma) [16*n^4-48*n^2+12: n in [0..40]]; // Vincenzo Librandi, Mar 05 2012
(PARI) a(n)=16*n^4-48*n^2+12 \\ Charles R Greathouse IV, Jan 29 2016
(Python)
from sympy import hermite
def A163323(n): return hermite(4, n) # Chai Wah Wu, Jan 06 2022
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Vincenzo Librandi, Jul 25 2009
EXTENSIONS
Edited by R. J. Mathar, Jul 26 2009
STATUS
approved