OFFSET
1,2
COMMENTS
Conjecture: This sequence intersects with A387201 at k = 4 to form twin primes with center N = 2^5 * 3^4 = 2592 = A027856(10). Any such intersection has to be at an even k because if k is odd, either N-1 or N+1 has to be divisible by 5. A covering system can be constructed that eliminates all other intersections except where k = 4(mod 60), and for k > 4 with k = 4(mod 60), the search up to 10^5 makes the probability of another intersection in this residue class vanishingly small.
a(30), if it exists, is greater than 3*10^5. - Lyle Blosser, Oct 28 2025
LINKS
MATHEMATICA
Select[Range[0, 4000], PrimeQ[32 * 3^# - 1] &] (* Amiram Eldar, Aug 21 2025 *)
PROG
(Python)
from gmpy2 import is_prime
print([ k for k in range(4000) if is_prime(32 * 3**k - 1)])
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Ken Clements, Aug 21 2025
EXTENSIONS
a(28) from Lyle Blosser, Oct 04 2025
a(29) from Lyle Blosser, Oct 06 2025
STATUS
approved
