This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A059241 #7 Sep 08 2022 08:45:02 %S A059241 23,67,89,199,353,397,419,463,617,661,683,727,859,881,947,991,1123, %T A059241 1277,1409,1453,1607,1783,1871,2003,2069,2113,2179,2267,2311,2333, %U A059241 2377,2399,2531,2663,2707,2729,2861,2927,2971,3037,3169,3191,3257,3301,3323 %N A059241 Primes p such that x^11 = 2 has no solution mod p. %C A059241 Complement of A049543 relative to A000040. %H A059241 Vincenzo Librandi, <a href="/A059241/b059241.txt">Table of n, a(n) for n = 1..1000</a> %t A059241 ok[p_]:= Reduce[Mod[x^11 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[1000]], ok] (* _Vincenzo Librandi_, Sep 20 2012 *) %o A059241 (Magma) [p: p in PrimesUpTo(3500) | not exists{x : x in ResidueClassRing(p) | x^11 eq 2} ]; // _Vincenzo Librandi_, Sep 20 2012 %Y A059241 Cf. A000040, A049543. %K A059241 easy,nonn %O A059241 1,1 %A A059241 _Klaus Brockhaus_, Jan 21 2001