[go: up one dir, main page]

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!)
Revision History for A136586 (Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A136586 Triangle of coefficients of even modified recursive orthogonal Hermite polynomials given in Hochstadt's book:P(x, n) = x*P(x, n - 1) - n*P(x, n - 2) ;A137286; P2(x,n)=P(x,n)+P(x,n-2).
(history; published version)
#3 by Russ Cox at Fri Mar 30 17:34:23 EDT 2012
AUTHOR

_Roger L. Bagula (rlbagulatftn(AT)yahoo.com), _, Mar 30 2008

Discussion
Fri Mar 30 17:34
OEIS Server: https://oeis.org/edit/global/158
#2 by N. J. A. Sloane at Fri Jan 09 03:00:00 EST 2009
KEYWORD

nonn,uned,tabl,newsign

#1 by N. J. A. Sloane at Sun Jun 29 03:00:00 EDT 2008
NAME

Triangle of coefficients of even modified recursive orthogonal Hermite polynomials given in Hochstadt's book:P(x, n) = x*P(x, n - 1) - n*P(x, n - 2) ;A137286; P2(x,n)=P(x,n)+P(x,n-2).

DATA

0, 0, 1, -1, 0, 1, 0, -4, 0, 1, 6, 0, -8, 0, 1, 0, 28, 0, -13, 0, 1, -40, 0, 78, 0, -19, 0, 1, 0, -246, 0, 171, 0, -26, 0, 1, 336, 0, -888, 0, 325, 0, -34, 0, 1, 0, 2616, 0, -2455, 0, 561, 0, -43, 0, 1, -3456, 0, 11670, 0, -5745, 0, 903, 0, -53, 0, 1

OFFSET

1,8

COMMENTS

Row sums are:

{0, 1, 0, -3, -1, 16, 20, -100, -260, 680, 3320}

The double function Integration is alternating:

Table[Integrate[Exp[ -x^2/2]*P2[x, n]*P2[x, m], {x, -Infinity, Infinity}], {n, 0, 10}, {m, 0, 10}];

Four Initial conditions were necessary for starting this recursion:

P[x, 0] = 1; P[x, 1] = x; P[x, -1] = 0; P[x, -2] = -1;

FORMULA

H2(x,n)=A137286(x,n)+A137286(x,n-2)

EXAMPLE

{0},

{0, 1},

{-1, 0, 1},

{0, -4, 0, 1},

{6, 0, -8, 0, 1},

{0, 28, 0, -13, 0, 1},

{-40, 0, 78, 0, -19, 0, 1},

{0, -246, 0, 171, 0, -26, 0,1},

{336, 0, -888, 0, 325, 0, -34, 0, 1},

{0, 2616, 0, -2455, 0, 561, 0, -43, 0, 1},

{-3456, 0, 11670, 0, -5745, 0, 903, 0, -53, 0, 1}

MATHEMATICA

P[x, 0] = 1; P[x, 1] = x; P[x, -1] = 0; P[x, -2] = -1; P[x_, n_] := P[x, n] = x*P[x, n - 1] - n*P[x, n - 2]; P2[x_, n_] := P2[x, n] = P[x, n] + P[x, n - 2]; Table[ExpandAll[P2[x, n]], {n, 0, 10}]; a = Join[{0}, Table[CoefficientList[P2[x, n], x], {n, 0, 10}]]; Flatten[a]

CROSSREFS

Cf. A137286.

KEYWORD

nonn,uned,tabl

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Mar 30 2008

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 August 29 15:31 EDT 2024. Contains 375517 sequences. (Running on oeis4.)