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.
%I A285270 #26 Nov 07 2021 08:04:55 %S A285270 1,2,14,180,3340,80600,2389704,83965616,3409634960,157077960480, %T A285270 8093278209760,461113571640128,28784033772836544,1953535902100115840, %U A285270 143219579014652040320,11279408109860685024000,949705205977314865582336,85131076752851318807814656,8094279370190580822082014720 %N A285270 a(n) = H_n(n), where H_n is the physicist's n-th Hermite polynomial. %H A285270 Wikipedia, <a href="https://en.wikipedia.org/wiki/Hermite_polynomials">Hermite polynomial</a> %F A285270 a(n) ~ exp(-1/4) * 2^n * n^n. - _Vaclav Kotesovec_, Nov 07 2021 %e A285270 Knowing that H_3(x) = 8x^3-12x, a(3) = H_3(3) = 8*3^3-12*3 = 180. %t A285270 Table[HermiteH[n, n], {n, 0, 18}] (* _Michael De Vlieger_, May 25 2017 *) %o A285270 (PARI) a(n) = polhermite(n, n); \\ _Michel Marcus_, May 25 2017 %o A285270 (Python) %o A285270 from sympy import hermite %o A285270 def a(n): return hermite(n, n) # _Indranil Ghosh_, May 25 2017 %Y A285270 Cf. A089466 (probabilist's variant). %Y A285270 Cf. A349066, A349067, A349068, A349069. %K A285270 nonn %O A285270 0,2 %A A285270 _Natan Arie Consigli_, May 24 2017 %E A285270 More terms from _Michel Marcus_, May 25 2017