login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A020087 a(n) = floor( Gamma(n + 1/4)/Gamma(1/4) ). 2
1, 0, 0, 0, 2, 9, 50, 318, 2310, 19060, 176310, 1807181, 20330788, 249052161, 3299941145, 47024161317, 717118460090, 11653174976468, 201017268344078, 3668565147279423, 70619879085128903, 1430052551473860292 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
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 *)
PROG
(PARI) vector(26, n, my(x=1/4); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 19 2018
(Magma) [Truncate(Gamma(n + 1/4)/Gamma(1/4)): n in [0..30]]; // 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
CROSSREFS
Sequence in context: A192945 A271960 A175895 * A277378 A026945 A246464
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)