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

A097144
Primes not appearing in A097143.
1
3, 5, 17, 59, 73, 79, 97, 103, 107, 113, 131, 139, 149, 151, 157, 163, 167, 179, 181, 199, 211, 223, 229, 281, 283, 307, 311, 331, 337, 359, 367, 373, 379, 397, 461, 467, 487, 491, 503, 509, 523, 541, 547, 563, 569, 571, 577, 587, 599, 607, 631, 643, 647, 659
OFFSET
1,1
COMMENTS
a(10^n): 3,113,1193,18143,228961,2765969,32509913,.., .
Conjecture: Lim_n->Inf a(n)/A097143(n) = 1 <==> a(P_2n).
LINKS
Eric Weisstein's World of Mathematics, Quadratic Residue.
MATHEMATICA
a[1] = 2; a[n_] := a[n] = Block[{k = PrimePi[ a[n - 1]] + 1}, While[JacobiSymbol[n, Prime[k]] != 1, k++ ]; Prime[k]]; Complement[ Prime[ Range[ PrimePi[1229]]], Table[ a[n], {n, 100}]]
CROSSREFS
Complement of A097143.
Sequence in context: A271659 A357442 A049540 * A219108 A176964 A085749
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jul 26 2004
STATUS
approved