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.

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

A020039 Nearest integer to Gamma(n + 2/5)/Gamma(2/5).

Original entry on oeis.org

1, 0, 1, 1, 5, 20, 109, 695, 5142, 43193, 406016, 4222569, 48137291, 596902408, 7998492273, 115178288736, 1773745646540, 29089428603255, 506156057696641, 9313271461618196, 180677466355392996, 3685820313650017111
Offset: 0

Views

Author

Keywords

Comments

Gamma(n + 2/5)/Gamma(2/5) = 1, 2/5, 14/25, 168/125, 2856/625, 62832/3125, 1696464/15625, 54286848/78125, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

  • Maple
    Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
Showing 1-2 of 2 results.