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.

A020087 a(n) = floor( Gamma(n + 1/4)/Gamma(1/4) ).

Original entry on oeis.org

1, 0, 0, 0, 2, 9, 50, 318, 2310, 19060, 176310, 1807181, 20330788, 249052161, 3299941145, 47024161317, 717118460090, 11653174976468, 201017268344078, 3668565147279423, 70619879085128903, 1430052551473860292
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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