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!)
A034788 a(n) is the n-th sextic factorial number divided by 6. 9
1, 12, 216, 5184, 155520, 5598720, 235146240, 11287019520, 609499054080, 36569943244800, 2413616254156800, 173780370299289600, 13554868883344588800, 1138608986200945459200, 102474808758085091328000, 9837581640776168767488000, 1003433327359169214283776000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
6*a(n) = (6*n)(!^6) = Product_{j=1..n} 6*j = 6^n*n!.
E.g.f.: (-1 + 1/(1-6*x))/6.
D-finite with recurrence: a(n) - 6*n*a(n-1) = 0. - R. J. Mathar, Feb 24 2020
From Amiram Eldar, Jan 08 2022: (Start)
Sum_{n>=1} 1/a(n) = 6*(exp(1/6)-1).
Sum_{n>=1} (-1)^(n+1)/a(n) = 6*(1-exp(-1/6)). (End)
MAPLE
seq(6^(n-1)*n!, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Table[6^(n-1)*n!, {n, 20}] (* Harvey P. Dale, Dec 22 2013 *)
PROG
(PARI) vector(20, n, 6^(n-1)*n!) \\ G. C. Greubel, Nov 11 2019
(Magma) [6^(n-1)*Factorial(n): n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [6^(n-1)*factorial(n) for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> 6^(n-1)*Factorial(n) ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A268369 A091266 A119309 * A082165 A006689 A009176
KEYWORD
easy,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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)