A065906 Integers i > 1 for which there are three primes p such that i is a solution mod p of x^4 = 2.
15, 48, 55, 197, 206, 221, 235, 283, 297, 408, 444, 472, 489, 577, 578, 623, 641, 677, 701, 703, 763, 854, 930, 1049, 1081, 1134, 1140, 1159, 1160, 1201, 1253, 1303, 1311, 1328, 1374, 1385, 1415, 1458, 1459, 1495, 1501, 1517, 1557, 1585, 1714, 1723, 1726
Offset: 1
Keywords
Examples
a(3) = 55, since 55 is (after 15 and 48) the third integer i for which there are three primes p > i (viz. 73, 103 and 1217) such that i is a solution mod p of x^4 = 2, or equivalently, 55^4 - 2 = 9150623 = 73*103*1217 has three prime factors > 4. (cf. A065902).
Programs
-
PARI
a065906(m) = local(c,n,f,a,s,j); c = 0; n = 2; while(c
n,s = concat(s,f[j,1]))); if(matsize(s)[2] == 3,print1(n,","); c++); n++) a065906(50)
Formula
a(n) = n-th integer i such that i^4 - 2 has three prime factors > i.
Comments