OFFSET
1,3
COMMENTS
a(38) > 250000.
Conjecture: This sequence intersects with A388408 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 = 250000 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
