OFFSET
1,1
COMMENTS
The 10 elements are not necessarily consecutive primes.
All the terms are positive multiples of 210 = 7# but are not multiples of 11 and also must not belong to A206045, where the first term is 1536160080; indeed, terms d' in A206045 correspond to the longest possible APs of primes that have exactly 11 elements with these common differences d'.
A342309(d) gives the first element of the smallest AP with 10 elements whose common difference is a(n) = d.
LINKS
Diophante, A1880. NP en PA (prime numbers in arithmetic progression) (in French).
Wikipedia, Primes in arithmetic progression.
FORMULA
m is a term iff A123556(m) = 10.
EXAMPLE
d = 210 is a term because the longest possible APs of primes with common difference d = 210 all have 10 elements. The first such AP is (199, 409, 619, 829, 1039, 1249, 1459, 1669, 1879, 2089), then 2299 = 11*209.
d = 420 is another term because the longest possible APs of primes with common difference d = 420 all have 10 elements; the first such APs start with 52879, 3544939, ... The smallest one is (52879, 53299, 53719, 54139, 54559, 54979, 55399, 55819, 56239, 56659), then 57079 = 11*5189.
PROG
(PARI) A053669(n) = forprime(p=2, , if(n%p, return(p)));
isok(n) = f(n) == 10; \\ Michel Marcus, Mar 10 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, Mar 09 2023
STATUS
approved