A298206 a(n) is the smallest b >= 2 such that b^(6*2^n) - b^(3*2^n) + 1 is prime.
6, 3, 3, 6, 5, 106, 207, 569, 224, 736, 2854, 21234, 14837, 165394, 24743, 62721, 237804, 143332
Offset: 0
Examples
2^12 - 2^6 + 1 = 4033 is composite and 3^12 - 3^6 + 1 = 530713 is prime, so a(1) = 3.
Links
- Phil Carmody, Prime Internet Eisenstein Search (ca. 2004-2005)
- Mersenneforum, Prime Internet Eisenstein Search discussion
- The Prime Pages, Generalized unique primes
Programs
-
PARI
for(n=0,9,for(b=2,1000,x=b^(3*2^n); if(isprime(x*(x-1)+1), print1(b,", "); break)))
Formula
a(n) = A085398(18*2^n). - Jinyuan Wang, Dec 21 2022
Extensions
a(13) from Serge Batalov, Jan 24 2018
Comments