login
A051446
Integers n such that 2^n == 13 (mod n).
11
1, 11, 95, 4834519, 156203641, 135466795859, 182901372149135
OFFSET
1,2
COMMENTS
No other terms below 10^15.
Larger terms: 1910102794991114096035717. - Max Alekseyev, May 18 2011
MATHEMATICA
m = 13; Join[Select[Range[m], Divisible[2^# - m, #] &],
Select[Range[m + 1, 10^6], PowerMod[2, #, #] == m &]] (* Robert Price, Oct 08 2018 *)
CROSSREFS
KEYWORD
hard,nonn,more
AUTHOR
Joe K. Crump (joecr(AT)carolina.rr.com)
EXTENSIONS
Terms 1, 11 prepended by Max Alekseyev, May 18 2011
a(7) added by Sergey Paramonov, Sep 05 2021
STATUS
approved