A255269 a(n) = Product_{k=1..n} k!^k.
1, 4, 864, 286654464, 7132880358604800000, 993710590042385551668019200000000000, 82086865668400428790437436119503664712777728000000000000000000
Offset: 1
Keywords
Links
- Eric Weisstein's World of Mathematics, Hyperfactorial
- Eric Weisstein's World of Mathematics, Superfactorial
Programs
-
Mathematica
Table[Product[k!^k,{k,1,n}],{n,1,10}] FoldList[Times,Table[(k!)^k,{k,10}]] (* Harvey P. Dale, Aug 16 2021 *)