OFFSET
1,1
MAPLE
a:=proc(n) if n=1 then 2 elif n=2 then 3 else nextprime(a(n-1)*a(n-2)) fi end: seq(a(n), n=1..13); # Emeric Deutsch, Feb 26 2005
MATHEMATICA
nxt[{a_, b_}]:={b, NextPrime[a*b]}; Transpose[NestList[nxt, {2, 3}, 15]] [[1]] (* Harvey P. Dale, Nov 24 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Nov 27 2003
EXTENSIONS
More terms from Emeric Deutsch, Feb 26 2005
STATUS
approved