VOOZH about

URL: https://oeis.org/A387760

⇱ A387760 - OEIS


login
A387760
Numbers k such that 64 * 3^k - 1 is prime.
4
1, 5, 7, 67, 295, 325, 367, 397, 517, 551, 1021, 2321, 5647, 8071, 22997, 95611, 103297, 124171
OFFSET
1,2
COMMENTS
a(19) > 250000. All values of this sequence must be odd numbers because an even k would produce 64 * 3^k - 1 that is the difference of two squares, so not prime for any such difference > 4.
Conjecture: This sequence intersects with A387761 at k = 1 and k = 7 to form twin primes with centers N = 2^6 * 3^1 = 192 = A027856(7) and N = 2^6 * 3^7 = 139968 = A027856(11). A covering system can be constructed that eliminates all other intersections (see linked program), and the search up to 250000 makes the probability of another intersection vanishingly small.
MATHEMATICA
Select[Range[2500], PrimeQ[64*3^# - 1] &] (* Amiram Eldar, Sep 12 2025 *)
PROG
(Python)
from gmpy2 import is_prime
print([ k for k in range(4000) if is_prime(64 * 3**k - 1)])
KEYWORD
nonn,more
AUTHOR
Ken Clements, Sep 07 2025
STATUS
approved