login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Numerator of Hermite(n, 4/7).
2

%I #22 Sep 08 2022 08:45:43

%S 1,8,-34,-1840,-4724,683488,7782664,-339629632,-8055944560,

%T 201822075008,8719919701984,-128026275891968,-10424283645874496,

%U 67164631281958400,13817854415099775104,18392961201951276032,-20165102300581059194624,-190160981569308074375168

%N Numerator of Hermite(n, 4/7).

%H Vincenzo Librandi, <a href="/A158991/b158991.txt">Table of n, a(n) for n = 0..200</a>

%H DLMF <a href="https://dlmf.nist.gov/18.9">Digital library of mathematical functions</a>, Table 18.9.1 for H_n(x)

%F D-finite with recurrence a(n) -8*a(n-1) +98*(n-1)*a(n-2)=0. [DLMF] - _R. J. Mathar_, Feb 16 2014

%F From _G. C. Greubel_, Jul 09 2018: (Start)

%F a(n) = 7^n * Hermite(n, 4/7).

%F E.g.f.: exp(8*x - 49*x^2).

%F a(n) = numerator(Sum_{k=0..floor(n/2)} (-1)^k*n!*(8/7)^(n-2*k)/(k!*(n-2*k)!)). (End)

%e Numerator of 1, 8/7, -34/49, -1840/343, -4724/2401, 683488/16807, 7782664/117649...

%p A158991 := proc(n)

%p orthopoly[H](n,4/7) ;

%p numer(%) ;

%p end proc: # _R. J. Mathar_, Feb 16 2014

%t Numerator[Table[HermiteH[n,4/7],{n,0,50}]] (* _Vladimir Joseph Stephan Orlovsky_, Mar 23 2011*)

%t Table[7^n*HermiteH[n, 4/7], {n,0,30}] (* _G. C. Greubel_, Jul 09 2018 *)

%o (PARI) a(n)=numerator(polhermite(n,4/7)) \\ _Charles R Greathouse IV_, Jan 29 2016

%o (Magma) [Numerator((&+[(-1)^k*Factorial(n)*(8/7)^(n-2*k)/( Factorial(k) *Factorial(n-2*k)): k in [0..Floor(n/2)]])): n in [0..30]]; // _G. C. Greubel_, Jul 09 2018

%Y Cf. A000420 (denominators)

%K sign,frac

%O 0,2

%A _N. J. A. Sloane_, Nov 12 2009