login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A124246
Numbers k that divide 5^k - 2.
11
1, 3, 123, 202884639, 242405133, 92273577267, 2670733723929, 81035221987959
OFFSET
1,2
COMMENTS
No other terms below 10^15. Some larger terms: 60092749466423900486673922957841, 401021769827858799355246286337987697472836927856337282726789534497163. - Max Alekseyev, Oct 15 2016
MATHEMATICA
Do[If[Mod[(PowerMod[5, n, n]-2), n]==0, Print[n]], {n, 1000000000}]
PROG
(PARI) is(n)=Mod(5, n)^n==2 \\ Charles R Greathouse IV, Nov 04 2016
CROSSREFS
Solutions to 5^n == k (mod n): A067946 (k=1), A015951 (k=-1), this sequence (k=2), A123062 (k=-2), A123061 (k=3), A123052 (k=-3), A125949 (k=4), A123047 (k=-4), A123091 (k=5), A015891 (k=-5), A277350 (k=6), A277348 (k=-6).
Sequence in context: A078258 A258658 A222186 * A219010 A037118 A085531
KEYWORD
nonn
AUTHOR
Farideh Firoozbakht, Nov 19 2006
EXTENSIONS
a(6)-a(8) from Max Alekseyev, Jul 28 2009, Jun 02 2010, Oct 15 2016
STATUS
approved