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.

A020067 Integer part of Gamma(n+4/9)/Gamma(4/9).

Original entry on oeis.org

1, 0, 0, 1, 5, 24, 130, 842, 6274, 52988, 500442, 5226841, 59818300, 744405515, 10008118594, 144561713037, 2232675345794, 36715105686390, 640474621418148, 11813198572823622, 229701083360459334, 4696111037591613052
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Truncate(Gamma(n+4/9)/Gamma(4/9)): n in [0..25]]; // G. C. Greubel, Nov 13 2019
    
  • Maple
    Digits := 64:f := proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)) end: seq(f(n,4/9), n=0..25);
    # alternative:
    seq(trunc(pochhammer(4/9,n)), n = 0..25); # G. C. Greubel, Nov 13 2019
  • Mathematica
    IntegerPart[Pochhammer[4/9, Range[0, 25]]] (* G. C. Greubel, Nov 13 2019 *)
  • PARI
    P(n,x) = gamma(x+n)/gamma(x);
    vector(26, n, truncate(P(n-1, 4/9)) ) \\ G. C. Greubel, Nov 13 2019
    
  • Sage
    [int(rising_factorial(4/9, n)) for n in (0..25)] # G. C. Greubel, Nov 13 2019

A020022 Nearest integer to Gamma(n + 4/9)/Gamma(4/9).

Original entry on oeis.org

1, 0, 1, 2, 5, 24, 131, 843, 6275, 52988, 500442, 5226842, 59818300, 744405515, 10008118595, 144561713037, 2232675345794, 36715105686391, 640474621418148, 11813198572823623, 229701083360459334, 4696111037591613052
Offset: 0

Views

Author

Keywords

Comments

Gamma(n + 4/9)/Gamma(4/9) = 1, 4/9, 52/81, 1144/729, 35464/6561, 1418560/59049, 69509440/531441, 4031547520/4782969, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

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