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.

A160251 Numerator of Hermite(n, 8/29).

Original entry on oeis.org

1, 16, -1426, -76640, 5969356, 611143616, -40423986104, -6814445150336, 366920889983120, 97565908182651136, -3993393901642052384, -1704952878058464945664, 46606527919245814078144, 35158473337439989488532480, -456562766083189138816177024
Offset: 0

Views

Author

N. J. A. Sloane, Nov 12 2009

Keywords

Examples

			Numerators of 1, 16/29, -1426/841, -76640/24389, 5969356/707281, ...
		

Crossrefs

Cf. A009973 (denominators).

Programs

  • GAP
    List(List([0..15],n->Sum([0..Int(n/2)],k->(-1)^k*Factorial(n)*(16/29)^(n-2*k)/(Factorial(k)*Factorial(n-2*k)))),NumeratorRat); # Muniru A Asiru, Jul 12 2018
  • Magma
    [Numerator((&+[(-1)^k*Factorial(n)*(16/29)^(n-2*k)/( Factorial(k) *Factorial(n-2*k)): k in [0..Floor(n/2)]])): n in [0..30]]; // G. C. Greubel, Jul 12 2018
    
  • Mathematica
    Numerator[HermiteH[Range[0,20],8/29]] (* Harvey P. Dale, Jul 22 2014 *)
    Table[29^n*HermiteH[n, 8/29], {n,0,30}] (* G. C. Greubel, Jul 12 2018 *)
    a[ n_] := If[ n < 0, 0, SeriesCoefficient[ Exp[ 16 x - 841 x^2], {x, 0, n}]]; (* Michael Somos, Jul 30 2018 *)
  • PARI
    a(n)=numerator(polhermite(n,8/29)) \\ Charles R Greathouse IV, Jan 29 2016
    

Formula

From G. C. Greubel, Jul 12 2018: (Start)
a(n) = 29^n * Hermite(n, 8/29).
E.g.f.: exp(16*x - 841*x^2).
a(n) = numerator(Sum_{k=0..floor(n/2)} (-1)^k*n!*(16/29)^(n-2*k)/(k!*(n-2*k)!)). (End)