A176037 a(n) = n!*(n+1)!*(n+2)!.
2, 12, 288, 17280, 2073600, 435456000, 146313216000, 73741860864000, 53094139822080000, 52563198423859200000, 69383421919494144000000, 119061952013851951104000000, 260031303198252661211136000000, 709885457731229765106401280000000, 2385215137976932010757508300800000000
Offset: 0
Examples
a(2) = (2)!*(2+1)!*(2+2)! = (2)!*(3)!*(4)! = 2*6*24 = 288.
Programs
-
Mathematica
Times@@@Partition[Range[0,15]!,3,1] (* Harvey P. Dale, Aug 29 2012 *)