OFFSET
0,2
LINKS
Ilya Gutkovskiy, Table of n, a(n) for n = 0..75
Eric Weisstein's World of Mathematics, Primorial
Eric Weisstein's World of Mathematics, Prime Counting Function
Eric Weisstein's World of Mathematics, Factorial
FORMULA
EXAMPLE
1, 2, 3, 5, 35/4, 77/4, 1001/24, 2431/24, 46189/192, 1062347/1728, 30808063/17280, 86822723/17280, 3212440751/207360, 10131543907/207360, 435656388001/2903040, ...
a(8) = 46189, because prime(8)#/8! = (2*3*5*7*11*13*17*19)/(1*2*3*4*5*6*7*8) = 46189/192.
MATHEMATICA
Table[Numerator[Product[Prime@ k, {k, n}]/n!], {n, 0, 22}] (* Michael De Vlieger, Apr 08 2016 *)
PROG
(PARI) a(n) = numerator(prod(k=1, n, prime(k))/n!); \\ Michel Marcus, Apr 09 2016
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Ilya Gutkovskiy, Apr 06 2016
STATUS
approved
