A030642 Product of next 2 primes.
2, 15, 323, 111547, 12449873237, 154999344563559225589, 24024796815132956872884975543558130445497
Offset: 1
Keywords
Programs
-
Maple
A030642 := proc(n) option remember ; if n = 1 then 2; else A030661(procname(n-1)) ; end if; end proc: seq(A030642(n),n=1..6) ; R. J. Mathar, Aug 09 2019
-
Mathematica
NestList[NextPrime[#] NextPrime[NextPrime[#]]&,2,10] (* Harvey P. Dale, Jul 26 2017 *)
Formula
a(n) = A030661(a(n-1)). - R. J. Mathar, Aug 09 2019