A231329 Numbers n such that (19^n + 4^n)/23 is prime.
7, 11, 211, 14461
Offset: 1
Programs
-
Mathematica
Select[ Prime[ Range[1, 100000] ], PrimeQ[ (19^# + 4^#)/23 ]& ]
-
PARI
is(n)=ispseudoprime((19^n+4^n)/23) \\ Charles R Greathouse IV, Jun 13 2017
Comments