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”).

A366171
Integers k such that (2^(k+3)-2^k-1)/5 is prime.
0
3, 7, 19, 27, 31, 39, 151, 199, 451, 2371, 2511, 7859, 103819
OFFSET
1,1
COMMENTS
If p = (2^(k+3)-2^k-1)/5 is prime, then 2^(k+2)*p is a strongly 2-near perfect number.
a(14) > 2*10^5. - Michael S. Branicky, Dec 02 2024
LINKS
Vedant Aryan, Dev Madhavani, Savan Parikh, Ingrid Slattery, and Joshua Zelinsky, On 2-Near Perfect Numbers, arXiv:2310.01305 [math.NT], 2023. See p. 15.
PROG
(PARI) isok(k) = my(x=(2^(k+3)-2^k-1)/5); (denominator(x)==1) && ispseudoprime(x);
CROSSREFS
Cf. A366172 (strongly 2-near perfect numbers).
Sequence in context: A001985 A203321 A203319 * A164097 A171140 A186452
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Oct 03 2023
EXTENSIONS
a(13) from Michael S. Branicky, Oct 05 2023
STATUS
approved