OFFSET
0,2
EXAMPLE
2, 3, 5 and 7 are the first 4 primes. So a(4) = 2! * 3! * 5! * 7! = 2 *6 *120 *5040 = 7257600.
MATHEMATICA
Table[ Product[ Prime[i]!, {i, n}], {n, 0, 8}] (* Robert G. Wilson v *)
FoldList[Times, 1, Prime[Range[10]]!] (* Harvey P. Dale, Apr 08 2012 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Oct 22 2005
EXTENSIONS
More terms from Robert G. Wilson v, Oct 29 2005
STATUS
approved