[go: up one dir, main page]

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

A284437
Number of primes between n and 2^n inclusive.
1
0, 1, 2, 3, 4, 9, 15, 28, 50, 93, 168, 305, 559, 1023, 1894, 3506, 6536, 12245, 22993, 43383, 82017, 155603, 295939, 564155, 1077862, 2063680, 3957800, 7603544, 14630834, 28192741, 54400018, 105097555, 203280210, 393615795, 762939100, 1480206268, 2874398504, 5586502337
OFFSET
0,3
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..92 (terms 0..47 from Vincenzo Librandi)
FORMULA
a(n) = A284275(n) + A080339(n) for n >= 1. - Amiram Eldar, Jun 11 2024
EXAMPLE
a(0) = 0 because there are 0 primes between 0 and 2^0.
a(5) = 9 because there are 9 primes between 5 and 2^5: 5, 7, 11, 13, 17, 19, 23, 29, 31 (we count the boundary of the interval in this case).
MATHEMATICA
Join[{0}, f[n_]:=PrimePi[2^n] - PrimePi[n-1]; Array[f, 37]]
PROG
(Magma) [0] cat [#PrimesInInterval(n, 2^n): n in [1..28]];
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Mar 27 2017
STATUS
approved