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.

A020084 a(n) = floor( Gamma(n + 2/5)/Gamma(2/5) ).

Original entry on oeis.org

1, 0, 0, 1, 4, 20, 108, 694, 5142, 43193, 406016, 4222569, 48137291, 596902408, 7998492273, 115178288736, 1773745646539, 29089428603255, 506156057696641, 9313271461618195, 180677466355392995, 3685820313650017111
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Truncate(Gamma(n + 2/5)/Gamma(2/5)): n in [0..30]]; // G. C. Greubel, Nov 19 2018
    
  • Maple
    Digits:= 64: x:=2/5: f:= proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)); end;
    seq(floor(pochhammer(2/5,n)), n = 0..25); # G. C. Greubel, Nov 17 2019
  • Mathematica
    Floor[Pochhammer[2/5, Range[0, 25]]] (* G. C. Greubel, Nov 19 2018 *)
  • PARI
    vector(26, n, my(x=2/5); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 19 2018
    
  • Sage
    [int(gamma(n + 2/5)/gamma(2/5))  for n in range(30)] # G. C. Greubel, Nov 19 2018
Showing 1-1 of 1 results.