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!)
A137449 A triangular sequence based on concepts of operations on existing sequences: in this case the H(x,n) ( A060821) traditional Hermite is differentiated twice : p(x,n)=-x^2*H''(x,n)+H(x,n). 0
1, 1, 1, -2, 0, -4, 0, -12, 0, -40, 12, 0, 48, 0, -176, 0, 120, 0, 800, 0, -608, -120, 0, -720, 0, 5280, 0, -1856, 0, -1680, 0, -16800, 0, 25536, 0, -5248, 1680, 0, 13440, 0, -147840, 0, 103936, 0, -14080, 0, 30240, 0, 403200, 0, -919296, 0, 377856, 0, -36352, -30240, 0, -302400, 0, 4435200, 0, -4677120, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Row sums are:
{1, 2, -6, -52, -116, 312, 2584, 1808, -42864, -144352, 601504};
As an operator algebra like an Energy Hamiltonian:
e(n)*H(x,n)=p(x,n)/x^2
The relative energy of the row sums goes up much faster than in the Chebyshev
of the first kind.
LINKS
FORMULA
p(x,n)=-x^2*H''(x,n)+H(x,n)
EXAMPLE
{1},
{1, 1},
{-2, 0, -4},
{0, -12, 0, -40},
{12, 0, 48, 0, -176},
{0, 120,0, 800, 0, -608},
{-120, 0, -720, 0, 5280, 0, -1856},
{0, -1680, 0, -16800, 0, 25536, 0, -5248},
{1680, 0, 13440, 0, -147840, 0, 103936, 0, -14080},
{0, 30240, 0, 403200, 0, -919296, 0, 377856, 0, -36352},
{-30240, 0, -302400, 0, 4435200, 0, -4677120,0, 1267200, 0, -91136}
MATHEMATICA
Clear[p, x, a] p[x, 0] = 1; p[x, 1] = x + 1; p[x_, n_] := p[x, n] = -x^2*D[HermiteH[n, x], {x, 2}] + HermiteH[n, x]; Table[Expand[p[x, n]], {n, 0, 10}]; a = Table[CoefficientList[p[x, n], x], {n, 0, 10}]; Flatten[a]
CROSSREFS
Sequence in context: A066493 A278510 A285773 * A056946 A225740 A349479
KEYWORD
tabl,uned,sign
AUTHOR
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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)