cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A176410 A symmetrical triangle of adjusted polynomial coefficients based on Hermite orthogonal polynomials.

Original entry on oeis.org

1, 1, 1, 1, 9, 1, 1, 1, 1, 1, 1, -191, 2113, -191, 1, 1, 1, 1, 1, 1, 1, 1, 7681, -337919, 7681, -337919, 7681, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -430079, 47738881, -430079, 180203521, -430079, 47738881, -430079, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 0

Views

Author

Roger L. Bagula, Apr 16 2010

Keywords

Comments

Row sums are: {1, 2, 11, 4, 1733, 6, -652793, 8, 273960969, 10, -143712092149, ...}.

Examples

			Triangle begins as:
  1;
  1,    1;
  1,    9,       1;
  1,    1,       1,    1;
  1, -191,    2113, -191,       1;
  1,    1,       1,    1,       1,    1;
  1, 7681, -337919, 7681, -337919, 7681, 1;
  1,    1,       1,    1,       1,    1, 1, 1;
		

Crossrefs

Cf. A060821.

Programs

  • Mathematica
    T[n_, m_]:= CoefficientList[HermiteH[n, x], x][[m + 1]]Reverse[ CoefficientList[ HermiteH[n, x], x]][[m + 1]] - (CoefficientList[ HermiteH[n, x], x][[1]]Reverse[CoefficientList[HermiteH[n, x], x]][[1]]) + 1;
    Table[T[n, m], {n, 0, 10}, {m, 0, n}]//Flatten

Extensions

Edited by G. C. Greubel, Apr 26 2019