login
A390050
Numbers k such that 256 * 3^k - 1 is prime.
2
3, 5, 15, 35, 41, 105, 203, 213, 753, 1677, 2231, 4317, 6065, 6587
OFFSET
1,1
COMMENTS
a(15) > 300000. All values of this sequence must be odd numbers because an even k would produce 256 * 3^k - 1 that is the difference of two squares, so not prime for any such difference > 4. This sequence has an empty intersection set with A390051 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).
MATHEMATICA
Select[Range[0, 3000], 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(256 * 3**k - 1, 50)])
KEYWORD
nonn,more
AUTHOR
Ken Clements, Oct 22 2025
STATUS
approved