login
A059635
Primes p such that x^56 = 2 has no solution mod p, but x^28 = 2 has a solution mod p.
3
353, 577, 593, 1033, 1049, 1097, 1153, 1193, 1201, 1481, 1601, 1753, 1889, 2273, 2281, 2393, 2473, 2857, 3049, 3089, 3121, 3217, 3313, 3673, 3761, 3833, 4001, 4153, 4217, 4289, 4457, 4657, 4801, 4937, 5113, 5233, 5393, 5569, 6121, 6521, 6569, 6761
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[PrimePi[10000]]], !MemberQ[PowerMod[Range[#], 56, #], Mod[2, #]] && MemberQ[PowerMod[Range[#], 28, #], Mod[2, #]]&] (* Vincenzo Librandi, Sep 21 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(7000) | not exists{x: x in ResidueClassRing(p) | x^56 eq 2} and exists{x: x in ResidueClassRing(p) | x^28 eq 2}]; // Vincenzo Librandi, Sep 21 2012
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Feb 02 2001
STATUS
approved