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.

A020095 Ceiling of GAMMA(n+10/11)/GAMMA(10/11).

This page as a plain text file.
%I A020095 #10 May 27 2019 15:09:38
%S A020095 1,1,2,6,20,97,573,3956,31286,278721,2761872,30129504,358814995,
%T A020095 4631975384,64426566695,960541539817,15281342678897,258393612570435,
%U A020095 4627594697852334,87503608832116848,1742117303112144503,36426089065072112322,798062496789307188134
%N A020095 Ceiling of GAMMA(n+10/11)/GAMMA(10/11).
%H A020095 Robert Israel, <a href="/A020095/b020095.txt">Table of n, a(n) for n = 0..449</a>
%p A020095 Digits := 64:f := proc(n, x) ceil(GAMMA(n+x)/GAMMA(x)) end:
%p A020095 seq(f(n, 10/11), n=0..25);
%p A020095 # Alternative:
%p A020095 M[0]:= 1: for i from 1 to 30 do M[i]:= M[i-1]*(i-1/11)od:
%p A020095 seq(ceil(M[i]),i=0..30); # _Robert Israel_, May 27 2019
%K A020095 nonn
%O A020095 0,3
%A A020095 _Simon Plouffe_