Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #13 Sep 08 2022 08:44:44
%S 1,0,0,2,8,39,218,1440,10922,93754,898484,9508956,110145408,
%T 1385996396,18826451052,274552411175,4278441740820,70950825535270,
%U 1247552015661833,23183674957715736,454013634588599833
%N a(n) = floor(Gamma(n+7/12)/Gamma(7/12)).
%H G. C. Greubel, <a href="/A020047/b020047.txt">Table of n, a(n) for n = 0..450</a>
%p Digits := 64:f := proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)); end;
%p seq(floor(pochhammer(7/12,n)), n = 0..25); # _G. C. Greubel_, Dec 01 2019
%t Floor[Pochhammer[7/12, Range[0, 25]]] (* _G. C. Greubel_, Dec 01 2019 *)
%o (PARI) x=7/12; vector(26, n, gamma(n-1+x)\gamma(x) ) \\ _G. C. Greubel_, Dec 01 2019
%o (Magma) [Floor(Gamma(n+7/12)/Gamma(7/12)): n in [0..25]]; // _G. C. Greubel_, Dec 01 2019
%o (Sage) [floor(rising_factorial(7/12, n)) for n in (0..25)] # _G. C. Greubel_, Dec 01 2019
%Y Cf. A020002, A020092.
%K nonn
%O 0,4
%A _Simon Plouffe_