A294319 a(n) = Product_{k=0..n} (3*k + 2)!.
2, 240, 9676800, 386266890240000, 33674087438261157888000000, 11977449554394932435557703221248000000000, 29139961073721833036780987632259240162985246720000000000000
Offset: 0
Keywords
Programs
-
Mathematica
Table[Product[(3*k + 2)!, {k, 0, n}] , {n, 0, 10}] FoldList[Times,(3 Range[0,10]+2)!] (* Harvey P. Dale, Sep 26 2023 *)