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.
%I A020050 #13 Sep 08 2022 08:44:44 %S A020050 1,0,1,5,19,96,572,3955,31285,278720,2761871,30129503,358814994, %T A020050 4631975383,64426566694,960541539816,15281342678896,258393612570434, %U A020050 4627594697852333,87503608832116847,1742117303112144502 %N A020050 a(n) = floor(Gamma(n+10/11)/Gamma(10/11)). %H A020050 G. C. Greubel, <a href="/A020050/b020050.txt">Table of n, a(n) for n = 0..449</a> %p A020050 Digits := 64:f := proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)); end; %p A020050 seq(floor(pochhammer(10/11,n)), n = 0..25); # _G. C. Greubel_, Dec 01 2019 %t A020050 Floor[Pochhammer[10/11, Range[0, 25]]] (* _G. C. Greubel_, Dec 01 2019 *) %o A020050 (PARI) x=10/11; vector(26, n, gamma(n-1+x)\gamma(x) ) \\ _G. C. Greubel_, Dec 01 2019 %o A020050 (Magma) [Floor(Gamma(n+10/11)/Gamma(10/11)): n in [0..25]]; // _G. C. Greubel_, Dec 01 2019 %o A020050 (Sage) [floor(rising_factorial(10/11, n)) for n in (0..25)] # _G. C. Greubel_, Dec 01 2019 %Y A020050 Cf. A020005, A020095. %K A020050 nonn %O A020050 0,4 %A A020050 _Simon Plouffe_