A075718 1+n+n^s is a prime, s=12.
1, 2, 14, 30, 32, 44, 65, 87, 90, 122, 134, 149, 162, 186, 189, 227, 237, 249, 255, 266, 311, 354, 366, 456, 476, 485, 561, 567, 584, 597, 605, 650, 665, 672, 689, 720, 771, 819, 884, 899, 975, 990, 1059, 1082, 1092, 1191, 1200, 1241, 1257, 1295, 1347, 1367
Offset: 1
Examples
2 is OK because at s=12, n=2, n_s=1+n+n^s=4099 is a prime.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..2200
Programs
-
Magma
[n: n in [0..2000] | IsPrime(s) where s is 1+n+n^12]; // Vincenzo Librandi, Jul 28 2014
-
Mathematica
Select[Range[2000], PrimeQ[1 + # + #^12] &] (* Vincenzo Librandi, Jul 28 2014 *)
-
PARI
for(n=1,1000,if(isprime(1+n+n^12),print1(n",")))
Extensions
More terms from Ralf Stephan, Apr 05 2003
Comments