A327840 Numbers m that divide 4^m + 3.
1, 7, 16387, 4509253, 24265177, 42673920001, 103949349763, 12939780075073
Offset: 1
Crossrefs
Programs
-
Magma
[1] cat [n: n in [1..10^8] | Modexp(4,n,n) + 3 eq n];
-
Mathematica
Select[Range[10^7], IntegerQ[(PowerMod[4, #, # ]+3)/# ]&] (* Metin Sariyar, Sep 28 2019 *)
-
PARI
is(n)=Mod(4,n)^n==-3 \\ Charles R Greathouse IV, Sep 29 2019
Extensions
a(6)-a(7) from Giovanni Resta, Sep 29 2019
a(8) from Max Alekseyev, Nov 10 2022
Comments