OFFSET
1,2
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..451
EXAMPLE
a(6)=450 because the largest primes that do not exceed 2,3,4,5 and 6 are, respectively 2,3,3,5 and 5, having product 2*3*3*5*5=450.
MAPLE
a:=proc(n) if n=1 then 1 else product(prevprime(k+1), k=2..n) fi end: seq(a(n), n=1..23); # Emeric Deutsch, Apr 30 2006
MATHEMATICA
FoldList[Times, 1, Table[Prime@ PrimePi@ k, {k, 2, 20}]] (* Michael De Vlieger, Aug 21 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Apr 28 2006
EXTENSIONS
More terms from Emeric Deutsch, Apr 30 2006
STATUS
approved