A128365 a(n) = least k such that the remainder when 25^k is divided by k is n.
2, 23, 11, 7, 10, 19, 57, 17, 14, 15, 614, 13, 34
Offset: 1
Links
- Robert G. Wilson v, Table of n, a(n) for n = 1..10000 with -1 for large entries where a(n) has not yet been found
- Fausto A. C. Cariboni, Table of n, a(n) for n = 1..10000 with -1 for large entries where a(n) has not yet been found, Oct 30 2016 [With 182 new terms, this supersedes the earlier table from Robert G. Wilson v]
Crossrefs
Programs
-
Mathematica
t = Table[0, {10000} ]; k = 1; While[ k < 4000000000, a = PowerMod[25, k, k]; If[a < 10001 && t[[a]] == 0, t[[a]] = k; Print[{a, k}]]; k++ ]; t (* Robert G. Wilson v, Aug 04 2009 *)
Comments