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.

A014511 a(n) = floor( Gamma(n+1/3) ).

This page as a plain text file.
%I A014511 #14 Sep 20 2019 11:28:13
%S A014511 2,0,1,2,9,40,214,1355,9940,82834,773118,7988887,90540729,1116669003,
%T A014511 14888920041,213407853922,3272253760146,53446811415729,
%U A014511 926411397872639,16984208960998389,328361373245968867
%N A014511 a(n) = floor( Gamma(n+1/3) ).
%D A014511 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 A014511 Amiram Eldar, <a href="/A014511/b014511.txt">Table of n, a(n) for n = 0..450</a>
%H A014511 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 A014511 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 A014511 seq(floor(evalf(GAMMA(n+1/3),100)), n=0..24);
%t A014511 a[n_] := Floor[Gamma[n + 1/3]]; Array[a, 21, 0] (* _Amiram Eldar_, Sep 20 2019 *)
%Y A014511 Cf. A014510, A014512, A014513, A014514, A014516, A014517, A014518, A014521, A014522.
%K A014511 nonn
%O A014511 0,1
%A A014511 _Simon Plouffe_