A123091 Numbers k such that k divides 5^k - 5.
1, 2, 3, 4, 5, 7, 10, 11, 13, 15, 17, 19, 20, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 65, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 124, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 190, 191, 193, 197, 199, 211, 217, 223, 227, 229, 233, 239
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[1000], IntegerQ[(PowerMod[5,#,# ]-5)/# ]&]
-
PARI
is(n)=Mod(5,n)^n==5 \\ Charles R Greathouse IV, Nov 04 2016
Comments