A130073 Numbers k such that k divides 5^k - 3^k - 2^k = A130072(k).
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 23, 24, 25, 27, 29, 31, 32, 36, 37, 41, 43, 44, 45, 47, 48, 53, 54, 59, 61, 64, 67, 71, 72, 73, 75, 79, 81, 83, 89, 95, 96, 97, 101, 103, 107, 108, 109, 113, 125, 127, 128, 131, 133, 135, 137, 139, 144, 149, 151
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[1000],IntegerQ[(PowerMod[5,#,# ]-PowerMod[3,#,# ]-PowerMod[2,#,# ])/# ]&]
-
PARI
is(n)=Mod(5,n)^n==Mod(3,n)^n+Mod(2,n)^n \\ Charles R Greathouse IV, Nov 04 2016
Comments