OFFSET
1,1
COMMENTS
Relationship to Collatz (3x+1) problem: when one of these primes appears in a hailstone sequence, the next odd number in the sequence must be prime. - Michael Cader Nelson, Jul 03 2020
LINKS
FORMULA
EXAMPLE
3 is in the sequence because 3 = (5*2^1-1)/3 and both 3 and 5 are prime numbers; while 23 is not in the sequence because the only positive integer values (p,x) to give 23 are (35,1) and 35 is not prime.
MATHEMATICA
mx = 590; Select[ Sort@ Flatten@ Table[(Prime[p]*2^x - 1)/3, {x, Log2[mx/3]}, {p, PrimePi[3 mx/2^x]}], PrimeQ] (* Robert G. Wilson v, Nov 01 2016 *)
PROG
(PARI) lista(nn) = {forprime(p=2, nn, z = 3*p+1; x = valuation(z, 2); for (ex = 1, x, if (isprime(z/2^ex), print1(p, ", "); break; ); ); ); } \\ Michel Marcus, Sep 01 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Cader Nelson, Aug 31 2016
EXTENSIONS
Corrected and extended by Michel Marcus, Sep 01 2016
STATUS
approved