OFFSET
1,3
COMMENTS
a(49) > 300000. This sequence has an empty intersection set with A390050 so no twin primes have a center (average) at 2^8 * 3^k. A covering system can be constructed that demonstrates this (see attached link).
LINKS
MATHEMATICA
Select[Range[0, 4000], PrimeQ[256 * 3^# + 1] &] (* Amiram Eldar, Oct 24 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
AUTHOR
Ken Clements, Oct 22 2025
STATUS
approved
