OFFSET
1,1
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..448
EXAMPLE
a(5)=300 because the smallest primes that are not smaller than 1,2,3,4 and 5 are 2,2,3,5 and 5, respectively, having product 2*2*3*5*5=300.
MAPLE
a:=n->product(nextprime(k-1), k=1..n): seq(a(n), n=1..22); # Emeric Deutsch, Apr 29 2006
MATHEMATICA
FoldList[Times, Table[NextPrime[k - 1], {k, 22}]] (* Michael De Vlieger, Aug 21 2017 *)
PROG
(PARI) a(n) = prod(k=1, n, nextprime(k)); \\ Michel Marcus, Aug 20 2019
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Apr 28 2006
EXTENSIONS
More terms from Emeric Deutsch and Jonathan Vos Post, Apr 29 2006
STATUS
approved