A047058 a(n) = 6^n * n!.
1, 6, 72, 1296, 31104, 933120, 33592320, 1410877440, 67722117120, 3656994324480, 219419659468800, 14481697524940800, 1042682221795737600, 81329213300067532800, 6831653917205672755200, 614848852548510547968000
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..300
- INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 528.
Programs
-
Magma
[6^n*Factorial(n): n in [0..20]]; // Vincenzo Librandi, Oct 05 2011
-
Maple
seq( 6^n*n!, n=0..20); # G. C. Greubel, Jun 08 2020
-
Mathematica
Table[6^n n!,{n,0,20}] (* Harvey P. Dale, Mar 30 2018 *)
Formula
a(n) = A051151(n+1, 0).
E.g.f.: 1/(1 - 6*x).
G.f.: 1/(1 -6*x/(1 - 6*x/(1 - 12*x/(1 - 12*x/(1 - 18*x/(1 - 18*x/(1 - 24*x/(1 - 24*x/(1 - 30*x/(1 - 30*x/(1 -... (continued fraction). - Philippe Deléham, Jan 08 2012
From Amiram Eldar, Jun 25 2020: (Start)
Sum_{n>=0} 1/a(n) = e^(1/6) (A092515).
Sum_{n>=0} (-1)^n/a(n) = e^(-1/6) (A092727). (End)
Extensions
Name changed by Arkadiusz Wesolowski, Oct 04 2011
Comments