login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A346146
Numbers m such that there are no primes of the form 2^m + 2^k - 1, for 0 < k < m.
0
1, 9, 17, 25, 29, 33, 43, 45, 49, 53, 57, 59, 69, 73, 81, 89, 97, 103, 113, 129, 134, 143, 161, 165, 173, 193, 201, 205, 206, 209, 225, 227, 229, 233, 237, 241, 257, 273, 278, 281, 289, 293, 297, 303, 305, 321, 345, 349, 353, 369, 377, 381, 383, 385, 401, 405
OFFSET
1,2
COMMENTS
In comparison with A081504 (dealing with 2^m + 2^k + 1) where most of the terms are even, here the vast majority of terms are odd.
MATHEMATICA
q[m_] := AllTrue[Range[m - 1], ! PrimeQ[2^m + 2^# - 1] &]; Select[Range[400], q] (* Amiram Eldar, Jul 06 2021 *)
PROG
(PARI) isok(m) = for(k=1, m-1, if (ispseudoprime(2^m+2^k-1), return (0))); return (1); \\ Michel Marcus, Jul 06 2021
CROSSREFS
Cf. A081504.
Sequence in context: A317332 A073160 A242987 * A143850 A017077 A004768
KEYWORD
nonn
AUTHOR
Lamine Ngom, Jul 06 2021
STATUS
approved