A033168 Longest arithmetic progression of primes with difference 210 and minimal initial term.
199, 409, 619, 829, 1039, 1249, 1459, 1669, 1879, 2089
Offset: 0
References
- Paul Glendinning, Math in Minutes: 200 Key Concepts Explained in an Instant. New York, London: Quercus (2013): pp. 316-317.
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987. See p. 143.
Links
- Tanya Khovanova, Non Recursions.
- OEIS wiki, Primes in arithmetic progression.
- Index entries for sequences related to primes in arithmetic progressions.
Programs
-
Mathematica
199 + 210*Range[0, 9] (* Paolo Xausa, Sep 14 2024 *)
-
PARI
forprime(p=1,,for(i=1,9,isprime(p+i*210)||next(2)); return([p+d|d<-[0..9]*210])) \\ M. F. Hasler, Jan 02 2020
Formula
a(n) = a(0) + n*210 for 0 <= n <= 9. - M. F. Hasler, Jan 02 2020
Comments