A184902 Primes that are not factors of m^2 + m + 11 (A048058).
2, 3, 5, 7, 19, 29, 37, 61, 71, 73, 89, 113, 131, 137, 149, 151, 157, 163, 179, 191, 199, 211, 223, 227, 233, 241, 257, 263, 277, 313, 331, 347, 349, 373, 383, 389, 409, 419, 421, 433, 449, 457, 463, 467, 491, 499, 503, 521, 523, 571, 577
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
Reap[Do[p = Prime[n]; ta = Table[Mod[m(m + 1) + 11, p],{m, 0, p/2 + 1}]; If[FreeQ[ta, 0], Sow[p]], {n, 1000}]][[2, 1]] Select[Prime[Range[100]], JacobiSymbol[#, 43] == -1 &] (* T. D. Noe, May 22 2011 *)
Formula
a(n) ~ 2n log n. - Charles R Greathouse IV, May 22 2011
Comments