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.

Showing 1-2 of 2 results.

A020060 a(n) = floor( Gamma(n+9/10)/Gamma(9/10) ).

Original entry on oeis.org

1, 0, 1, 4, 19, 94, 559, 3857, 30477, 271252, 2685395, 29270806, 348322596, 4493361500, 62457724853, 930620100318, 14796859595058, 250066927156481, 4476197996101023, 84600142126309335, 1683542828313555774
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Floor(Gamma(n+9/10)/Gamma(9/10)): n in [0..20]]; // G. C. Greubel, Nov 13 2019
    
  • Maple
    Digits := 64:f := proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)); end;
    seq(floor(pochhammer(9/10,n)), n = 0..20); # G. C. Greubel, Nov 13 2019
  • Mathematica
    Floor[Pochhammer[9/10, Range[0, 20]]] (* G. C. Greubel, Nov 13 2019 *)
  • PARI
    vector(21, n, my(x=9/10); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 13 2019
    
  • Sage
    [floor(rising_factorial(9/10, n)) for n in (0..20)] # G. C. Greubel, Nov 13 2019

A020016 Nearest integer to Gamma(n + 7/10)/Gamma(7/10).

Original entry on oeis.org

1, 1, 1, 3, 12, 56, 318, 2134, 16430, 142945, 1386570, 14836295, 173584650, 2204525052, 30201993206, 443969300123, 6970318011936, 116404310799339, 2060356301148292, 38528662831473069, 759014657780019468
Offset: 0

Views

Author

Keywords

Comments

Gamma(n + 7/10)/Gamma(7/10) = 1, 7/10, 119/100, 3213/1000, 118881/10000, 5587407/100000, 318482199/1000000, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

  • Magma
    [Round(Gamma(n +7/10)/Gamma(7/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;
  • Mathematica
    Table[Round[Gamma[n + 7/10]/Gamma[7/10]], {n, 0,50}] (* G. C. Greubel, Jan 19 2018 *)
  • PARI
    for(n=0,30, print1(round(gamma(n+7/10)/gamma(7/10)), ", ")) \\ G. C. Greubel, Jan 19 2018
    
Showing 1-2 of 2 results.