A289631 Prime powers P for which the number of modulo P residues among sums of two sixth powers is less than P.
4, 7, 8, 9, 13, 16, 19, 27, 31, 32, 37, 43, 49, 61, 64, 67, 73, 79, 81, 109, 121, 128, 139, 169, 223, 243, 256, 343, 361, 512, 529, 729, 961, 1024, 1331, 1369, 1849, 2048, 2187, 2197, 2209, 2401, 3481, 3721, 4096, 4489, 5041, 5329, 6241, 6561, 6859, 6889, 8192
Offset: 1
Keywords
Examples
7 is in the sequence because A289630(7) = 3 < 7. 5 is not in the sequence because A289630(5) = 5. A289630(12) = 9 < 12, but 12 is not in the sequence because it is not a prime power.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..192 (terms < 2*10^6)
Crossrefs
Cf. A289740 (similar sequence for sums of three sixth powers), A289760 (similar sequence for sums of four sixth powers). - Jon E. Schoenfield, Jul 14 2017
Programs
-
PARI
isok(n) = isprimepower(n) && (#Set(vector(n^2, i, ((i%n)^6 + (i\n)^6) % n)) < n); \\ Michel Marcus, Jul 11 2017
Comments