A375917 Composite numbers k == 1, 11 (mod 12) such that 3^((k-1)/2) == 1 (mod k).
121, 1729, 2821, 7381, 8401, 10585, 15457, 15841, 18721, 19345, 23521, 24661, 28009, 29341, 31621, 41041, 46657, 47197, 49141, 50881, 52633, 55969, 63973, 74593, 75361, 82513, 87913, 88573, 93961, 111361, 112141, 115921, 125665, 126217, 138481, 148417, 172081
Offset: 1
Keywords
Examples
1683683 is a term because 1683683 = 59*28537 is composite, 1683683 == 11 (mod 12), and 3^((1683683-1)/2) == 1 (mod 1683683).
Links
- Jianing Song, Table of n, a(n) for n = 1..1000
Crossrefs
| b=2 | b=3 | b=5 |
-----------------------------------+-------------------+----------+---------+
-----------------------------------+-------------------+----------+---------+
-----------------------------------+-------------------+----------+---------+
(b/k)=-1, b^((k-1)/2)==1 (mod k) | | | |
-----------------------------------+-------------------+----------+---------+
(union of first two) | | | |
-----------------------------------+-------------------+----------+---------+
(union of all three) | | | |
Programs
-
PARI
isA375917(k) = (k>1) && !isprime(k) && (k%12==1 || k%12==11) && Mod(3,k)^((k-1)/2) == 1
Comments