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.

A020042 a(n) = round( Gamma(n+1/4)/Gamma(1/4) ).

Original entry on oeis.org

1, 0, 0, 1, 2, 10, 51, 319, 2310, 19061, 176310, 1807181, 20330789, 249052162, 3299941145, 47024161317, 717118460090, 11653174976468, 201017268344078, 3668565147279424, 70619879085128903, 1430052551473860293
Offset: 0

Views

Author

Keywords

Comments

Gamma(n+1/4)/Gamma(1/4) = 1, 1/4, 5/16, 45/64, 585/256, 9945/1024, 208845/4096, 5221125/16384, 151412625/65536, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

  • Magma
    [Round(Gamma(n+1/4)/Gamma(1/4)): n in [0..30]]; // G. C. Greubel, Dec 06 2019
    
  • Maple
    Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
    seq( round(pochhammer(1/4,n)), n=0..30); # G. C. Greubel, Dec 06 2019
  • Mathematica
    Table[Round[Pochhammer[1/4,n]], {n,0,30}] (* G. C. Greubel, Dec 06 2019 *)
  • PARI
    x=1/4; vector(30, n, round(gamma(n-1+x)/gamma(x)) ) \\ G. C. Greubel, Dec 06 2019
    
  • Sage
    [round(rising_factorial(1/4,n)) for n in (0..30)] # G. C. Greubel, Dec 06 2019