[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A272143 For a given n, and any m less than n-1, the total number of primes of the form 2^n-2^m-1. 2
0, 1, 1, 2, 2, 3, 0, 4, 4, 3, 1, 5, 1, 4, 0, 3, 2, 8, 1, 11, 4, 5, 0, 7, 1, 2, 0, 1, 5, 4, 0, 7, 5, 1, 1, 9, 0, 6, 0, 7, 1, 6, 0, 4, 7, 2, 1, 10, 3, 3, 1, 2, 1, 6, 0, 4, 3, 0, 1, 8, 3, 3, 0, 3, 1, 8, 1, 2, 2, 3, 0, 9, 1, 5, 2, 5, 8, 3, 0, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
For the first 12000 terms the average is ~3.8 with a maximum of 25 at a(11520).
Essentially the same as A095058. - R. J. Mathar, Apr 24 2016
LINKS
EXAMPLE
For n=1, m<0, so there are no solutions. For n=2 there is one solution: m=0, yielding prime 2. For n=3, one solution: m=1, yielding prime 5. For n=4 there are two solutions: m=2 and m=1, yielding primes 11 and 13 respectively. The primes so formed are terms of A095078.
MATHEMATICA
Table[Length[Select[Table[2^n - 2^m - 1, {m, 0, n - 2}], PrimeQ[#] & ]], {n, 1, 100}] (* Robert Price, Apr 21 2016 *)
PROG
(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
CROSSREFS
Cf. A095078.
Sequence in context: A263254 A257989 A095201 * A095058 A137345 A060755
KEYWORD
nonn
AUTHOR
Hans Havermann, Apr 21 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)