login
A388408
Numbers k such that 128 * 3^k + 1 is prime.
3
2, 3, 4, 8, 40, 170, 195, 215, 380, 495, 522, 562, 624, 650, 668, 804, 888, 978, 2830, 5319, 5903, 6479, 9650, 14510, 37838, 38807, 55982, 69827, 102010, 149308, 249792
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.
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)])
KEYWORD
nonn,more,hard
AUTHOR
Ken Clements, Sep 16 2025
STATUS
approved