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”).
%I #13 Sep 20 2019 21:06:03
%S 3,0,1,2,8,35,184,1155,8376,69106,639232,6552134,73711509,902965985,
%T 11964299312,170491265198,2599991794272,42249866656927,
%U 728810199831991,13300786146933842,256040133328476465
%N a(n) = floor( Gamma(n+1/4) ).
%D M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 255.
%H Amiram Eldar, <a href="/A014513/b014513.txt">Table of n, a(n) for n = 0..450</a>
%H M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
%H M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 255.
%p seq(floor(evalf(GAMMA(n+1/4),100)), n=0..24);
%t a[n_] := Floor[Gamma[n + 1/4]]; Array[a, 21, 0] (* _Amiram Eldar_, Sep 20 2019 *)
%Y Cf. A014510, A014511, A014512, A014514, A014516, A014517, A014518, A014521, A014522.
%K nonn
%O 0,1
%A _Simon Plouffe_