login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A112767
Beginning with 2, primes of the form: least multiple of the previous term followed by a 1. Beginning with 2, a(n) is the least prime of the form k*a(n-1)*10 + 1.
1
2, 41, 821, 16421, 328421, 59115781, 13005471821, 260109436421, 36415321098941, 2184919265936461, 196642733934281491, 31462837429485038561, 5348682363012456555371, 4011511772259342416528251, 842417472174461907470932711, 33696698886978476298837308441
OFFSET
1,1
LINKS
MATHEMATICA
lmpt[n_]:=Module[{k=2}, While[!PrimeQ[10*k*n+1], k++]; 10*k*n+1]; NestList[ lmpt, 2, 20] (* Harvey P. Dale, Jan 21 2016 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Jan 02 2006
EXTENSIONS
More terms from Joshua Zucker, Jan 11 2006
More terms from Harvey P. Dale, Jan 21 2016
STATUS
approved