OFFSET
1,1
COMMENTS
Coincides with sequence of "primes p such that x^27 = 2 has a solution mod p" for first 339 terms, then diverges.
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^9 - 2, p] == 0, x, Integers] =!= False; Select[Prime[Range[100]], ok] (* Vincenzo Librandi, Sep 15 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(500) | exists(t){x : x in ResidueClassRing(p) | x^9 eq 2}]; // Vincenzo Librandi, Sep 15 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved