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.

A020015 Nearest integer to Gamma(n + 9/10)/Gamma(9/10).

Original entry on oeis.org

1, 1, 2, 5, 19, 95, 559, 3858, 30478, 271252, 2685395, 29270806, 348322597, 4493361500, 62457724854, 930620100318, 14796859595058, 250066927156482, 4476197996101023, 84600142126309335, 1683542828313555775, 35186045111753315688
Offset: 0

Views

Author

Keywords

Comments

Gamma(n + 9/10)/Gamma(9/10) = 1, 9/10, 171/100, 4959/1000, 193401/10000, 9476649/100000, 559122291/1000000, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

  • Magma
    [Round(Gamma(n +9/10)/Gamma(9/10)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
  • Maple
    Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end; seq(f(n, 9/10), n=0..25);
  • Mathematica
    f[n_] := Round[Gamma[n + 9/10]/Gamma[9/10]]; Array[f, 22, 0] (* Robert G. Wilson v, Sep 13 2013 *)
  • PARI
    for(n=0,30, print1(round(gamma(n+9/10)/gamma(9/10)), ", ")) \\ G. C. Greubel, Jan 19 2018