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!)
A004996 a(n) = 6^n/n! * Product_{k=0..n-1} (6*k - 1). 6
1, -6, -90, -1980, -50490, -1393524, -40412196, -1212365880, -37280250810, -1168114525380, -37146041907084, -1195427166827976, -38851382921909220, -1273129932671794440, -42013287778169216520 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 - 36*x)^(1/6).
a(n) ~ -1/6*Gamma(5/6)^-1*n^(-7/6)*6^(2*n)*{1 + 7/72*n^-1 + ...}. - Joe Keane (jgk(AT)jgk.org), Nov 24 2001
a(n) = 6^(2*n) * binomial(n-7/6, n). - G. C. Greubel, Aug 20 2019
D-finite with recurrence: n*a(n) +6*(-6*n+7)*a(n-1)=0. - R. J. Mathar, Jan 17 2020
MAPLE
seq(6^n*product(6*k-1, k = 0..n-1)/n!, n = 0..20); # G. C. Greubel, Aug 20 2019
MATHEMATICA
Table[6^(2*n)*Pochhammer[-1/6, n]/n!, {n, 0, 20}] (* G. C. Greubel, Aug 20 2019 *)
PROG
(PARI) vector(20, n, n--; 6^n*prod(j=0, n-1, 6*j-1)/n! ) \\ G. C. Greubel, Aug 20 2019
(Magma) [1] cat [6^n*(&*[6*k-1: k in [0..n-1]])/Factorial(n): n in [1..20]]; // G. C. Greubel, Aug 20 2019
(Sage) [6^(2*n)*rising_factorial(-1/6, n)/factorial(n) for n in (0..20)] # G. C. Greubel, Aug 20 2019
(GAP) List([0..20], n-> 6^n*Product([0..n-1], k-> 6*k-1)/Factorial(n) ); # G. C. Greubel, Aug 20 2019
CROSSREFS
Cf. A004993.
Sequence in context: A138462 A002896 A266734 * A001499 A147630 A221097
KEYWORD
sign,easy
AUTHOR
Joe Keane (jgk(AT)jgk.org)
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 May 8 03:44 EDT 2024. Contains 372317 sequences. (Running on oeis4.)