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

A235393
Integers k such that 11 + 210*k*i is prime for i = 0..7.
1
5763, 12018, 22801, 50132, 61637, 94360, 109218, 134995, 136610, 155577, 206873, 225384, 246512, 257764, 284794, 288691, 303437, 317914, 370530, 385202, 418722, 431434, 490450, 515765, 548617, 560188, 597275, 693940, 704899, 768433, 786934, 819640, 840480
OFFSET
1,1
COMMENTS
Primes in AP. Longest AP with a(1) = 11 has 11 terms, see A206045.
FORMULA
a(n) = A206042(n)/210.
PROG
(From M. F. Hasler, Jan 15 2014) (Start)
(PARI) is_A235393(k)=!for(i=1, 7, ispseudoprime(11+210*k*i)||return)
(PARI) for(k=1, 1e6, is_A235393(k) && print1(k", ")) \\ (End)
CROSSREFS
Sequence in context: A330343 A055354 A053862 * A246421 A317049 A329525
KEYWORD
nonn
AUTHOR
Zak Seidov, Jan 09 2014
STATUS
approved