OFFSET
1,1
LINKS
Daniel Morel, Table of n, a(n) for n = 1..189
Daniel Morel, Robert G. Wilson v et al., Table of n, a(n) for n = 1..10000 with -1 for large entries where a(n) has not yet been found
MATHEMATICA
t = Table[0, {10000} ]; k = 1; While[ k < 4300000000, a = PowerMod[11, k, k]; If[a < 10001 && t[[a]] == 0, t[[a]] = k; Print[{a, k}]]; k++ ]; t
f[n_]:=Module[{k=1}, While[PowerMod[11, k, k]!=n, k++]; k]; Array[f, 51] (* Harvey P. Dale, Mar 12 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Jan 30 2007
EXTENSIONS
a(52) from Max Alekseyev & Joe K. Crump (joecr(AT)carolina.rr.com), Feb 06 2007
a(108), a(514), a(754), a(808), a(820), a(880), a(934), a(948) added by Daniel Morel, May 18 2010, Jun 17 2010
a-file updated by Max Alekseyev, Dec 10 2010
a(112), a(348), a(810) added by Daniel Morel, Mar 12 2015
STATUS
approved