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!)
A004998 a(n) = (6^n/n!) * Product_{k=0..n-1} ( 6*k + 11 ). 1
1, 66, 3366, 154836, 6735366, 282885372, 11598300252, 467245810152, 18573020953542, 730538824172652, 28491014142733428, 1103379274982221848, 42480102086815541148, 1627314679941087653208, 62070431363467200486648, 2358676391811753618492624, 89334868339870168300408134 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 - 36*x)^(-11/6).
a(n) ~ 6/5*Gamma(5/6)^-1*n^(5/6)*6^(2*n)*{1 + 55/72*n^-1 - ...}. - Joe Keane (jgk(AT)jgk.org), Nov 24 2001
D-finite with recurrence: n*a(n) +6*(-6*n-5)*a(n-1)=0. - R. J. Mathar, Jan 17 2020
MAPLE
a:= n-> (6^n/n!)*product(6*k+11, k=0..n-1); seq(a(n), n=0..20); # G. C. Greubel, Aug 22 2019
MATHEMATICA
CoefficientList[Series[(1-36x)^(-11/6), {x, 0, 20}], x] (* or *) Table[(36^(n-1) Pochhammer[11/6, n-1])/Gamma[n], {n, 20}] (* Harvey P. Dale, Jul 24 2011 *)
PROG
(PARI) a(n) = (6^n/n!)*prod(k=0, n-1, 6*k+11);
vector(20, n, n--; a(n)) \\ G. C. Greubel, Aug 22 2019
(Magma) [1] cat [6^n*(&*[6*k+11: k in [0..n-1]])/Factorial(n): n in [1..20]]; // G. C. Greubel, Aug 22 2019
(Sage) [6^(2*n)*rising_factorial(11/6, n)/factorial(n) for n in (0..20)] # G. C. Greubel, Aug 22 2019
(GAP) List([0..20], n-> 6^n*Product([0..n-1], k-> 6*k+11)/Factorial(n) ); # G. C. Greubel, Aug 22 2019
CROSSREFS
Sequence in context: A138875 A138877 A265454 * A239409 A295592 A097316
KEYWORD
nonn,easy
AUTHOR
Joe Keane (jgk(AT)jgk.org)
EXTENSIONS
Terms a(14) onward added by G. C. Greubel, Aug 22 2019
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 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)