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!)
A020066 Integer part of Gamma(n+5/9)/Gamma(5/9). 7
1, 0, 0, 2, 7, 35, 198, 1302, 9843, 84216, 804738, 8494460, 98158213, 1232430908, 16706285646, 243169268856, 3782633071103, 62623591954942, 1099391947653437, 20399828362013787, 398929976857158503 (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(trunc(pochhammer(5/9, n)), n = 0..20); # G. C. Greubel, Nov 13 2019
MATHEMATICA
IntegerPart[Pochhammer[5/9, Range[0, 20]]] (* G. C. Greubel, Nov 13 2019 *)
PROG
(PARI) P(n, x) = gamma(x+n)/gamma(x);
vector(21, n, truncate(P(n-1, 5/9)) ) \\ G. C. Greubel, Nov 13 2019
(Magma) [Truncate(Gamma(n+5/9)/Gamma(5/9)): n in [0..20]]; // G. C. Greubel, Nov 13 2019
(Sage) [int(rising_factorial(5/9, n)) for n in (0..20)] # G. C. Greubel, Nov 13 2019
CROSSREFS
Sequence in context: A057298 A058941 A287327 * A024719 A086637 A172511
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 11:47 EDT 2024. Contains 371936 sequences. (Running on oeis4.)