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.

A020028 Nearest integer to Gamma(n + 1/8)/Gamma(1/8).

This page as a plain text file.
%I A020028 #13 Sep 23 2022 22:09:33
%S A020028 1,0,0,0,1,4,20,121,862,7000,63876,646743,7195013,87239530,1145018832,
%T A020028 16173391002,244622538903,3944538439806,67550220781672,
%U A020028 1224347751667801,23415650750646696,471239971356764754
%N A020028 Nearest integer to Gamma(n + 1/8)/Gamma(1/8).
%C A020028 Gamma(n + 1/8)/Gamma(1/8) = 1, 1/8, 9/64, 153/512, 3825/4096, 126225/32768, 5175225/262144, 253586025/2097152, ... - _R. J. Mathar_, Sep 04 2016
%p A020028 Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
%t A020028 Table[Round[Gamma[n+1/8]/Gamma[1/8]],{n,0,30}] (* _Harvey P. Dale_, Sep 05 2020 *)
%Y A020028 Cf. A045755, A020073, A020118.
%K A020028 nonn
%O A020028 0,6
%A A020028 _Simon Plouffe_