A065912 Fourth solution mod p of x^4 = 2 for primes p such that more than two solution exists.
55, 84, 86, 205, 222, 235, 206, 305, 325, 489, 556, 494, 830, 928, 964, 972, 1046, 976, 721, 940, 1162, 1132, 1065, 871, 1469, 1289, 1328, 1477, 1594, 1253, 1760, 1604, 1782, 1877, 1883, 1442, 2002, 2114, 2144, 1709, 2112, 1909, 2277, 2343, 2492, 2735
Offset: 1
Keywords
Examples
a(3) = 86, since 113 is the third term of A014754, 27, 47, 66 and 86 are the solutions mod 113 of x^4 = 2 and 86 is the fourth one.
Programs
-
PARI
a065912(m) = local(s); forprime(p = 2,m,s = []; for(x = 0,p-1, if(x^4%p == 2%p,s = concat(s,[x]))); if(matsize(s)[2]>3,print1(s[4],","))) a065912(3000)
Formula
a(n) = fourth solution mod p of x^4 = 2, where p is the n-th prime such that x^4 = 2 has more than two solutions mod p, i.e. p is the n-th term of A014754.
Comments