OFFSET
1,1
COMMENTS
a(32) > 254000.
Conjecture: This sequence intersects with A384228 at k = 2 to form twin primes with center N = 2^7 * 3^2 = 1152 = A027856(9). Any such intersection has to be at an odd k because if k is even, N-1 will be the difference of two squares, so not prime for N > 4. A covering system can be constructed that eliminates all other intersections (see linked program), and the search up to k = 254000 makes the probability of another intersection vanishingly small.
LINKS
MATHEMATICA
Select[Range[0, 1000], PrimeQ[128*3^# + 1] &] (* Amiram Eldar, Sep 22 2025 *)
PROG
(Python)
from gmpy2 import is_prime
print([ k for k in range(4000) if is_prime(128 * 3**k + 1, 50)])
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Ken Clements, Sep 16 2025
STATUS
approved
