OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..29
EXAMPLE
Among the first 3 terms of the sequence, 5 is the largest prime. So a(4) = a(3)*5 +1 = 26*5 + 1 = 131.
MATHEMATICA
nxt[{lp_, a_}]:=Module[{c=a lp+1}, {If[PrimeQ[c]&&c>lp, c, lp], c}]; NestList[nxt, {2, 2}, 12][[;; , 2]] (* Harvey P. Dale, Apr 14 2023 *)
PROG
(PARI) {m=11; print1(a=2, ", "); v=[a]; for(n=2, m, b=a; v=vecsort(v); j=#v; a=0; while(a<1, k=v[j]; if(isprime(k), print1(a=b*k+1, ", "); v=concat(v, a), j--)))} \\ Klaus Brockhaus, Aug 17 2006
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Leroy Quet, Jul 03 2006
EXTENSIONS
More terms from Klaus Brockhaus, Aug 17 2006
STATUS
approved