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”).

A285694
a(1) = 2; a(n + 1) = smallest prime > a(n) such that a(n + 1) - a(n) is the product of 10 primes.
0
2, 59051, 62507, 64811, 66347, 67883, 71339, 73643, 81707, 83243, 87083, 89387, 91691, 95531, 99371, 100907, 104491, 110251, 115883, 119723, 121259, 126443, 127979, 136043, 139627, 141931, 143467, 145771, 148331
OFFSET
1,1
COMMENTS
First differences: 59049, 3456, 2304, 1536, 1536, 3456, 2304, 8064, 1536, 3840, 2304, 2304, ...
MATHEMATICA
NestList[Module[{p = NextPrime@ #}, While[PrimeOmega[p - #] != 10, p = NextPrime@ p]; p] &, 2, 28] (* Michael De Vlieger, Apr 25 2017 *)
KEYWORD
nonn
AUTHOR
Zak Seidov, Apr 25 2017
STATUS
approved