OFFSET
1,2
COMMENTS
Divisors of 12. For k <= 16, we may compute membership directly (see Mathematica code). For k > 16, we have j = 2 as a counterexample. - Eric M. Schmidt, Aug 03 2014
MATHEMATICA
h1[mod_] := Table[PowerMod[i, i, mod], {i, 1, mod + LCM[mod*CarmichaelLambda[mod]]}]; h2[mod_] := Table[PowerMod[i, i^i, mod], {i, 1, mod + LCM[mod*CarmichaelLambda[mod]]}]; Union[Table[If[h1[i] == h2[i], Print[i]; i], {i, 1000}]]
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
José María Grau Ribas, Jan 23 2012
STATUS
approved