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.

A054373 Table of resultants for Hermite polynomials H_k(x) and H_n(x).

Original entry on oeis.org

0, -8, 0, 0, -2048, 0, 192, 16384, 28311552, 0, 0, -1179648, 0, 29686813949952, 0, -7680, 67108864, -289910292480, 5699868278390784, -3039929748475084800000, 0, 0, -838860800, 0, 1094374709451030528, 0, -37180135792929290696471347200000, 0
Offset: 1

Views

Author

Keywords

Examples

			{0},
{-8, 0},
{0, -2048, 0},
{192, 16384, 28311552, 0},
{0, -1179648, 0, 29686813949952, 0},
{-7680, 67108864, -289910292480, 5699868278390784, -3039929748475084800000, 0}
		

Programs

  • Mathematica
    Flatten[Table[Resultant[HermiteH[n, x], HermiteH[k, x], x], {k, 20}, {n, k}]]
  • PARI
    T(n, k) = polresultant(polhermite(n), polhermite(k)); \\ Michel Marcus, Jul 10 2018