OFFSET
1,2
COMMENTS
It appears that about 1/log_10(N) of the odd numbers below 2N have this property: for n < 10^k with k = (1, 2, 3, 4, 5, 6), there are (7, 51, 364, 2675, 20668, 167185) numbers as defined in NAME.
See the sequence A332075 of the corresponding odd numbers for more information.
LINKS
T. Ordowski, Problem, post to the SeqFan list, Aug. 11, 2020
MATHEMATICA
Select[Range[134], PrimeQ[(m = 2^IntegerExponent[2*#, 2]) + 2*#/m] &] (* Amiram Eldar, Aug 16 2020 *)
PROG
(PARI) select( {is_A332076(n)=ispseudoprime((n>>n=valuation(n, 2))+2<<n)}, [1..199])
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Aug 13 2020
STATUS
approved