login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A052561
a(n) = (1 + 2^n) * n!.
1
2, 3, 10, 54, 408, 3960, 46800, 650160, 10362240, 186157440, 3719520000, 81789523200, 1962469555200, 51017981414400, 1428416301312000, 42851181364992000, 1371216880889856000, 46621018262827008000
OFFSET
0,1
LINKS
FORMULA
E.g.f.: (2-3*x)/((1-x)*(1-2*x)).
a(n) = 3*n*a(n-1) - 2*n*(n-1)*a(n-2), with a(0)=2, a(1)=3.
a(n) = A000051(n)*A000142(n). - Michel Marcus, May 05 2019
MAPLE
spec := [S, {S=Union(Sequence(Z), Sequence(Union(Z, Z)))}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
Table[(1+2^n)*n!, {n, 0, 20}] (* G. C. Greubel, May 05 2019 *)
PROG
(PARI) {a(n) = (1+2^n)*n!}; \\ G. C. Greubel, May 05 2019
(Magma) [(1+2^n)*Factorial(n): n in [0..20]]; // G. C. Greubel, May 05 2019
(Sage) [(1+2^n)*factorial(n) for n in (0..20)] # G. C. Greubel, May 05 2019
(GAP) List([0..20], n-> (1+2^n)*Factorial(n)) # G. C. Greubel, May 05 2019
CROSSREFS
Sequence in context: A013081 A054921 A192258 * A181927 A066526 A093856
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
STATUS
approved