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.

Showing 1-1 of 1 results.

A247850 The 5th Hermite Polynomial evaluated at n: H_5(n) = 32*n^5 - 160*n^3 + 120*n.

Original entry on oeis.org

0, -8, -16, 3816, 23008, 80600, 214992, 483784, 967616, 1774008, 3041200, 4941992, 7687584, 11531416, 16773008, 23761800, 32900992, 44651384, 59535216, 78140008, 101122400, 129211992, 163215184, 204019016, 252595008, 310003000, 377394992, 456018984
Offset: 0

Views

Author

Vincenzo Librandi, Sep 25 2014

Keywords

Crossrefs

Cf. Hermite_k(n): A005843 (k=1), A060626 (k=2), A163322 (k=3), A163323 (k=4), this sequence (k=5), A247851 (k=6), A247852 (k=7), A247853 (k=8), A247854 (k=9), A247855 (k=10).

Programs

  • Mathematica
    Table[32 n^5 - 160 n^3 + 120 n, {n, 0, 30}]
  • PARI
    a(n)=32*n^5-160*n^3+120*n \\ Charles R Greathouse IV, Oct 07 2015
    
  • Python
    from sympy import hermite
    def A247850(n): return hermite(5,n) # Chai Wah Wu, Jan 06 2022

Formula

G.f.: -x*(8-32*x-3792*x^2-32*x^3+8*x^4)/(x-1)^6.
a(n) = 6*a(n-1)-15*a(n-2)+20*a(n-3)-15*a(n-4)+6*a(n-5)-a(n-6).
Showing 1-1 of 1 results.