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!)
A020073 a(n) = floor( Gamma(n+1/8)/Gamma(1/8) ). 5
1, 0, 0, 0, 0, 3, 19, 120, 861, 7000, 63875, 646742, 7195012, 87239530, 1145018831, 16173391001, 244622538902, 3944538439805, 67550220781671, 1224347751667801, 23415650750646695, 471239971356764753 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(1/8, n)), n = 0..25); # G. C. Greubel, Nov 17 2019
MATHEMATICA
Floor[Pochhammer[1/8, Range[0, 25]]] (* G. C. Greubel, Nov 17 2019 *)
PROG
(PARI) A020073(n)=if(n==0, 1, truncate(prod(i=1, n, n-i+1/8)) );
for(n=0, 30, print(A020073(n), " ")) \\ R. J. Mathar, Feb 07 2008
(PARI) vector(26, n, my(x=1/8); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 17 2019
(Magma) [Floor(Gamma(n+1/8)/Gamma(1/8)): n in [0..25]]; // G. C. Greubel, Nov 17 2019
(Sage) [floor(rising_factorial(1/8, n)) for n in (0..25)] # G. C. Greubel, Nov 17 2019
CROSSREFS
Sequence in context: A302443 A126809 A340644 * A138977 A163605 A294252
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 August 12 01:38 EDT 2024. Contains 375082 sequences. (Running on oeis4.)