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.

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

Original entry on oeis.org

1, 6, 142, 5724, 324876, 23761800, 2126627016, 225081383184, 27498818692752, 3808595968290144, 589662462800129760, 100917872425324633536, 18918488805502510634688, 3855242696428245589623936, 848531650317994634533024896, 200604383862593153678170272000
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 07 2021

Keywords

Comments

In general, for k>=1, H(n,k*n) ~ exp(-1/(4*k^2)) * (2*k)^n * n^n.

Crossrefs

Programs

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

Formula

a(n) ~ exp(-1/36) * 6^n * n^n.