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-1 of 1 results.

A020063 Integer part of Gamma(n+1/10)/Gamma(1/10).

Original entry on oeis.org

1, 0, 0, 0, 0, 2, 14, 91, 648, 5252, 47801, 482796, 5359035, 64844332, 849460756, 11977396665, 180858689641, 2911824903229, 49792205845228, 901238925798638, 17213663482753993, 345994636003355264, 7300486819670796087
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Truncate(Gamma(n+1/10)/Gamma(1/10)): 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(trunc(pochhammer(1/10,n)), n = 0..25); # G. C. Greubel, Nov 13 2019
  • Mathematica
    IntegerPart[Pochhammer[1/10, 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, 1/10)) ) \\ G. C. Greubel, Nov 13 2019
    
  • Sage
    [int(rising_factorial(1/10, n)) for n in (0..25)] # G. C. Greubel, Nov 13 2019
Showing 1-1 of 1 results.