login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A060821 Triangle T(n,k) read by rows giving coefficients of Hermite polynomial of order n (n >= 0, 0 <= k <= n). 24
1, 0, 2, -2, 0, 4, 0, -12, 0, 8, 12, 0, -48, 0, 16, 0, 120, 0, -160, 0, 32, -120, 0, 720, 0, -480, 0, 64, 0, -1680, 0, 3360, 0, -1344, 0, 128, 1680, 0, -13440, 0, 13440, 0, -3584, 0, 256, 0, 30240, 0, -80640, 0, 48384, 0, -9216, 0, 512, -30240, 0, 302400, 0, -403200, 0, 161280, 0, -23040, 0, 1024 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

Exponential Riordan array [exp(-x^2),2x]. [From Paul Barry (pbarry(AT)wit.ie), Jan 22 2009]

REFERENCES

M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 801.

LINKS

T. D. Noe, Rows n=0..100 of triangle, flattened

M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].

R. D. Poshusta, Hermite Polynomials

Index entries for sequences related to Hermite polynomials

FORMULA

T(n, k)= ((-1)^((n-k)/2))*(2^k)*n!/(k!*((n-k)/2)!) if n-k is even and >=0, else 0.

E.g.f.: exp(-y^2+2*y*x).

T(n, k)=n!/(k!*2^((n-k)/2)((n-k)/2)!)2^((n+k)/2)cos(pi*(n-k)/2)(1+(-1)^(n+k))/2; T(n, k)=A001498((n+k)/2, (n-k)/2)*cos(pi*(n-k)/2)2^((n+k)/2)(1+(-1)^(n+k))/2; - Paul Barry (pbarry(AT)wit.ie), Aug 28 2005

EXAMPLE

[1], [0, 2], [ -2, 0, 4], [0, -12, 0, 8], [12, 0, -48, 0, 16], [0, 120, 0, -160, 0, 32], ... . Thus H_0(x)=1, H_1(x)=2*x, H_2(x)=-2+4*x^2, H_3(x)=-12*x+8*x^3, H_4(x)=12-48*x^2+16*x^4,...

MAPLE

with(orthopoly):for n from 0 to 10 do H(n, x):od;

T := proc(n, m) if n-m >= 0 and n-m mod 2 = 0 then ((-1)^((n-m)/2))*(2^m)*n!/(m!*((n-m)/2)!) else 0 fi; end;

MATHEMATICA

Flatten[ Table[ CoefficientList[ HermiteH[n, x], x], {n, 0, 10}]] (* From Jean-François Alcover, Jan 18 2012 *)

CROSSREFS

Cf. A001814, A001816, A000321, A062267 (row sums).

Without initial zeros, same as A059343.

Sequence in context: A138090 A138093 A138094 * A191718 A201396 A005881

Adjacent sequences:  A060818 A060819 A060820 * A060822 A060823 A060824

KEYWORD

sign,tabl,nice

AUTHOR

Vladeta Jovovic (vladeta(AT)eunet.rs), Apr 30 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 18:47 EST 2012. Contains 205663 sequences.