A319838 Numbers k such that A319100(k) is a power of 6.
1, 2, 7, 9, 13, 14, 18, 19, 26, 27, 31, 37, 38, 43, 49, 54, 61, 62, 63, 67, 73, 74, 79, 81, 86, 91, 97, 98, 103, 109, 117, 122, 126, 127, 133, 134, 139, 146, 151, 157, 158, 162, 163, 169, 171, 181, 182, 189, 193, 194, 199, 206, 211, 217, 218, 223, 229, 234, 241
Offset: 1
Keywords
Examples
91 = 7*13 is a term since the number of solutions to x^6 == 1 (mod 91) is 36 = 6^2. 1197 = 7*9*19 is a term since the number of solutions to x^6 == 1 (mod 1197) is 216 = 6^3.
Links
- Jianing Song, Table of n, a(n) for n = 1..15917 (all terms below 100000)
Programs
-
PARI
isA319838(n) = if(abs(n)==1||abs(n)==2, 1, my(i=znstar(n)[2]); !(i[#i]%6)==1, 1)
Comments