login
A177495
a(n) is the least k such that the remainder when 100^k is divided by k is n.
1
3, 7, 97, 6, 19, 38, 31, 23, 13, 15, 89, 22, 29, 43, 17, 24, 83, 41, 19003, 580, 79, 42, 1903, 58, 35, 37, 73, 36, 71, 49, 999969, 56, 67, 66, 145, 76, 411, 578, 61, 60, 59, 494, 51, 262, 55, 158, 53, 52, 57, 398, 15673, 69, 1589, 9946, 65, 88, 20940211, 366, 391
OFFSET
1,1
MATHEMATICA
t = Table[0, {70}]; k = 1; While[k < 210000000, a = PowerMod[100, k, k]; If[a < 71 && t[[a]] == 0, t[[a]] = k; Print[{a, k}]]; k++ ]; t
Table[Module[{k=1}, While[PowerMod[100, k, k]!=n, k++]; k], {n, 60}] (* Harvey P. Dale, Jun 06 2018 *)
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, May 10 2010
STATUS
approved