cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A366171 Integers k such that (2^(k+3)-2^k-1)/5 is prime.

Original entry on oeis.org

3, 7, 19, 27, 31, 39, 151, 199, 451, 2371, 2511, 7859, 103819
Offset: 1

Views

Author

Michel Marcus, Oct 03 2023

Keywords

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

Crossrefs

Cf. A366172 (strongly 2-near perfect numbers).

Programs

  • PARI
    isok(k) = my(x=(2^(k+3)-2^k-1)/5); (denominator(x)==1) && ispseudoprime(x);

Extensions

a(13) from Michael S. Branicky, Oct 05 2023