A216738 Primes p such that x^14 = -2 has no solution mod p.
5, 7, 13, 23, 29, 31, 37, 43, 47, 53, 61, 71, 79, 101, 103, 109, 113, 127, 149, 151, 157, 167, 173, 181, 191, 197, 199, 211, 223, 229, 239, 263, 269, 271, 277, 281, 293, 311, 317, 337, 349, 359, 367, 373, 379, 383, 389, 397, 421, 431, 439, 449, 461, 463, 479, 487, 491
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
ok[p_] := Reduce[Mod[x^14 + 2, p] == 0, x, Integers] == False; Select[Prime[Range[100]], ok]
Comments