A160316 Numerator of Hermite(n, 18/31).
1, 36, -626, -160920, -2183604, 1158543216, 62691990216, -11103408719136, -1243180750254960, 125971505456256576, 26039514814335534816, -1483749801553172137344, -603942415060596074024256, 12479278480840903510828800, 15539359208014326031959897216
Offset: 0
Examples
Numerators of 1, 36/31, -626/961, -160920/29791, -2183604/923521, ...
Links
- G. C. Greubel, Table of n, a(n) for n = 0..368
Crossrefs
Cf. A009975 (denominators).
Programs
-
Magma
[Numerator((&+[(-1)^k*Factorial(n)*(36/31)^(n-2*k)/( Factorial(k) *Factorial(n-2*k)): k in [0..Floor(n/2)]])): n in [0..30]]; // G. C. Greubel, Oct 04 2018
-
Mathematica
Table[31^n*HermiteH[n, 18/31], {n, 0, 30}] (* G. C. Greubel, Oct 04 2018 *)
-
PARI
a(n)=numerator(polhermite(n, 18/31)) \\ Charles R Greathouse IV, Jan 29 2016
-
PARI
x='x+O('x^30); Vec(serlaplace(exp(36*x - 961*x^2))) \\ G. C. Greubel, Oct 04 2018
Formula
From G. C. Greubel, Oct 04 2018: (Start)
a(n) = 31^n * Hermite(n, 18/31).
a(n+2) = 36*a(n+1) - 1922*(n+1)*a(n)
E.g.f.: exp(36*x - 961*x^2).
a(n) = numerator(Sum_{k=0..floor(n/2)} (-1)^k*n!*(36/31)^(n-2*k)/(k!*(n-2*k)!)). (End)