A178985 Primes of the form 3^k mod 2^k, in the order in which they are found.
3, 19, 11, 227, 1019, 269201, 186023729, 457933343698297657, 2267602862220213494836920572800947269169358383491, 3510117420185552058703020362961660520827436011216742688744177
Offset: 1
Keywords
Links
- Eric Chen, Table of n, a(n) for n = 1..17
Programs
-
Mathematica
f[n_] := PowerMod[3, n, 2^n]; Select[f@ Range@ 300, PrimeQ]
Comments