login
A051447
Integers n such that 2^n == 9 (mod n).
12
1, 7, 2228071, 16888457, 352978207, 1737848873, 77362855777, 567442642711
OFFSET
1,2
COMMENTS
No other terms below 10^15. [Max Alekseyev, May 20 2012]
MATHEMATICA
m = 9; Join[Select[Range[m], Divisible[2^# - m, #] &],
Select[Range[m + 1, 10^3], PowerMod[2, #, #] == m &]] (* Robert Price, Oct 08 2018 *)
KEYWORD
hard,nonn,more
AUTHOR
Joe K. Crump (joecr(AT)carolina.rr.com)
EXTENSIONS
Edited by N. J. A. Sloane, Jun 22 2008, at the suggestion of Don Reble
Terms 1, 7 prepended by Max Alekseyev, May 18 2011
STATUS
approved