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.

A349066 a(n) = H(2*n, n), where H(n,x) is n-th Hermite polynomial.

Original entry on oeis.org

1, 2, 76, 14136, 5324432, 3275529760, 2982971060928, 3773262142004096, 6332628384952750336, 13620318069121988018688, 36536710970888029776972800, 119598502032157660592768038912, 469232422933986002753883881312256, 2173747962477936168042899607178059776
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 07 2021

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> simplify(HermiteH(2*n, n)):
    seq(a(n), n=0..20);  # Alois P. Heinz, Nov 07 2021
  • Mathematica
    Table[HermiteH[2*n, n], {n, 0, 15}]
  • PARI
    a(n) =  polhermite(2*n, n); \\ Michel Marcus, Nov 07 2021

Formula

a(n) ~ exp(-1) * 2^(2*n) * n^(2*n).