A217095 Numbers n such that (10^n + 9^n)/19 is prime.
7, 67, 73, 1091, 1483, 10937
Offset: 1
Programs
-
Mathematica
Select[ Prime[ Range[1, 100000] ], PrimeQ[ (10^# + 9^#)/19 ]& ]
-
PARI
is(n)=isprime((10^n+9^n)/19) \\ Charles R Greathouse IV, Feb 17 2017
Comments