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”).

A308942
a(n) = Product_{k=1..n} Stirling2(n,k) * k!.
1
1, 1, 2, 36, 12096, 129600000, 67688524800000, 2447142088237056000000, 8252231792724705005273088000000, 3364251896526130462332506439942144000000000, 208568259979639958038116614964866564751360000000000000000, 2415411835199739880770061590576804904109473876860500705280000000000000000
OFFSET
0,3
MATHEMATICA
Table[Product[StirlingS2[n, k] k!, {k, 1, n}], {n, 0, 11}]
PROG
(PARI) a(n) = prod(k=1, n, stirling(n, k, 2)*k!); \\ Michel Marcus, Jul 02 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 01 2019
STATUS
approved