STATUS
reviewed
approved
reviewed
approved
proposed
reviewed
editing
proposed
(Python)
from sympy import isprime
def a(n): return sum(1 for i in range(n-1) if isprime(2**n-1-2**i))
print([a(n) for n in range(1, 81)]) # Michael S. Branicky, Nov 09 2023
approved
editing
reviewed
approved
proposed
reviewed
editing
proposed
Essentially the same as A095058. - R. J. Mathar, Apr 24 2016
approved
editing
editing
approved
For a given n, and any m less than n-1, the total number of primes of the form 2^n-2^m-1.
proposed
editing