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!)
A020060 a(n) = floor( Gamma(n+9/10)/Gamma(9/10) ). 4
1, 0, 1, 4, 19, 94, 559, 3857, 30477, 271252, 2685395, 29270806, 348322596, 4493361500, 62457724853, 930620100318, 14796859595058, 250066927156481, 4476197996101023, 84600142126309335, 1683542828313555774 (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(9/10, n)), n = 0..20); # G. C. Greubel, Nov 13 2019
MATHEMATICA
Floor[Pochhammer[9/10, Range[0, 20]]] (* G. C. Greubel, Nov 13 2019 *)
PROG
(PARI) vector(21, n, my(x=9/10); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 13 2019
(Magma) [Floor(Gamma(n+9/10)/Gamma(9/10)): n in [0..20]]; // G. C. Greubel, Nov 13 2019
(Sage) [floor(rising_factorial(9/10, n)) for n in (0..20)] # G. C. Greubel, Nov 13 2019
CROSSREFS
Sequence in context: A137636 A027618 A278678 * A122394 A047781 A089354
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)