cp's OEIS Frontend

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.

A059263 Primes p such that x^10 = 2 has no solution mod p.

This page as a plain text file.
%I A059263 #10 Sep 08 2022 08:45:02
%S A059263 3,5,11,13,19,29,31,37,41,43,53,59,61,67,71,83,101,107,109,131,139,
%T A059263 149,157,163,173,179,181,191,197,211,227,229,251,269,271,277,281,283,
%U A059263 293,307,311,317,331,347,349,373,379,389,397,401,419,421,443,461,467,491
%N A059263 Primes p such that x^10 = 2 has no solution mod p.
%C A059263 Complement of A049542 relative to A000040.
%H A059263 Vincenzo Librandi, <a href="/A059263/b059263.txt">Table of n, a(n) for n = 1..1000</a>
%t A059263 ok[p_] := Reduce[Mod[x^10 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[100]], ok] (* _Vincenzo Librandi_, Sep 20 2012 *)
%o A059263 (Magma) [p: p in PrimesUpTo(500) | not exists{x: x in ResidueClassRing(p) | x^10 eq 2}]; // _Vincenzo Librandi_, Sep 20 2012
%Y A059263 Cf. A000040, A049542.
%K A059263 nonn,easy
%O A059263 1,1
%A A059263 _Klaus Brockhaus_, Jan 23 2001