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.

A020110 Ceiling of Gamma(n + 7/9)/Gamma(7/9).

This page as a plain text file.
%I A020110 #13 Jun 22 2018 04:41:03
%S A020110 1,1,2,4,15,70,401,2715,21116,185346,1812264,19532171,230045569,
%T A020110 2939471158,40499380397,598490843643,9442855533027,158430131720784,
%U A020110 2816535675036147,52888281009012093,1046012668844905827
%N A020110 Ceiling of Gamma(n + 7/9)/Gamma(7/9).
%p A020110 Digits := 64:f := proc(n,x) ceil(GAMMA(n+x)/GAMMA(x)); end;
%t A020110 Table[Ceiling[Gamma[n + 7/9]/Gamma[7/9]], {n, 0, 29}] (* _Alonso del Arte_, Jun 17 2018 *)
%o A020110 (PARI) a(n) = ceil(gamma(n + 7/9)/gamma(7/9)); \\ _Michel Marcus_, Jun 21 2018
%K A020110 nonn
%O A020110 0,3
%A A020110 _Simon Plouffe_