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.

A020021 Nearest integer to Gamma(n + 5/9)/Gamma(5/9).

Original entry on oeis.org

1, 1, 1, 2, 8, 36, 199, 1303, 9844, 84217, 804738, 8494461, 98158214, 1232430908, 16706285647, 243169268857, 3782633071104, 62623591954943, 1099391947653438, 20399828362013787, 398929976857158503
Offset: 0

Views

Author

Keywords

Comments

a(n) equals A020066(n) or A020111(n). - R. J. Mathar, May 18 2007

Crossrefs

Programs

  • Magma
    [Round(Gamma(n +5/9)/Gamma(5/9)): n in [0..30]]; // G. C. Greubel, Feb 03 2018
  • Maple
    Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
  • Mathematica
    Table[Round[Gamma[n + 5/9]/Gamma[5/9]], {n, 0, 50}] (* G. C. Greubel, Feb 03 2018 *)
  • PARI
    for(n=0,30, print1(round(gamma(n+5/9)/gamma(5/9)), ", ")) \\ G. C. Greubel, Feb 03 2018