A075719 1+n+n^s is a prime, s=10.
1, 3, 8, 21, 23, 26, 33, 36, 38, 45, 51, 57, 69, 71, 78, 92, 107, 117, 149, 156, 170, 176, 179, 195, 209, 216, 219, 224, 261, 293, 321, 341, 359, 374, 378, 386, 390, 404, 410, 413, 420, 474, 492, 507, 516, 546, 569, 572, 582, 621, 632, 683, 767, 783, 789, 809
Offset: 1
Examples
3 is OK because at s=10, n=3, n_s=1+n+n^s=59053 is a prime.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..3300
Programs
-
Magma
[n: n in [0..1000] | IsPrime(s) where s is 1+n+n^10]; // Vincenzo Librandi, Jul 28 2014
-
Mathematica
Select[Range[1000], PrimeQ[1 + # + #^10] &] (* Vincenzo Librandi, Jul 28 2014 *)
-
PARI
for(n=1,1000,if(isprime(1+n+n^10),print1(n",")))
Extensions
More terms from Ralf Stephan, Apr 05 2003
Comments