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!)
A020070 a(n) = floor( Gamma(n+7/8)/Gamma(7/8) ). 5
1, 0, 1, 4, 18, 89, 523, 3598, 28341, 251531, 2483877, 27012163, 320769440, 4129906548, 57302453360, 852373993744, 13531437150692, 228343001917931, 4081631159283027, 77040788131467135, 1531185664112909314 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(7/8, n)), n = 0..25); # G. C. Greubel, Nov 17 2019
MATHEMATICA
Floor[Pochhammer[7/8, Range[0, 25]]] (* G. C. Greubel, Nov 17 2019 *)
PROG
(PARI) vector(26, n, my(x=7/8); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 17 2019
(Magma) [Floor(Gamma(n+7/8)/Gamma(7/8)): n in [0..25]]; // G. C. Greubel, Nov 17 2019
(Sage) [floor(rising_factorial(7/8, n)) for n in (0..25)] # G. C. Greubel, Nov 17 2019
CROSSREFS
Sequence in context: A129323 A000305 A200029 * A197650 A036749 A218760
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 25 13:02 EDT 2024. Contains 371969 sequences. (Running on oeis4.)