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!)
A190501 Number of Ramanujan primes R_k such that 2^(n-1) < R_k <= 2^n. 3
0, 1, 0, 0, 1, 2, 3, 6, 10, 19, 33, 62, 118, 208, 409, 740, 1418, 2676, 5043, 9638, 18248, 34949, 66752, 127880, 245489, 472113, 908302, 1751624, 3381546, 6534616, 12645372, 24490255, 47485123, 92152929, 178987716, 347943866, 676925069, 1317911597, 2567659990, 5005877954, 9765539069, 19062301793, 37230980158, 72756216207, 142253989491, 278275735952, 544621563320, 1066382258001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
PROG
(PARI) \\ With RR[.] is a list of A104272(.). The output of this program is (for n>=1) n, A190502(n), and RR[a(n)], a(n).
j=0; while(2^j<RR[10^8], {n=1; while(RR[n]<=2^j, n++); pn=n-1; if(n<=1, print(j, " ", 0, " none"), print(j, " ", pn, " ", RR[pn], " ", pn-pn2)); pn2=pn; j++});
(Perl) use ntheory ":all"; say "$_ ", ramanujan_prime_count(1 << $_) - ramanujan_prime_count(1 << ($_-1)) for 0..56; # Dana Jacobsen, May 05 2017
CROSSREFS
Sequence in context: A191519 A165920 A274160 * A026021 A374690 A291875
KEYWORD
nonn
AUTHOR
John W. Nicholson, May 11 2011
EXTENSIONS
Extended by T. D. Noe, May 11 2011
Modified the name as to match offset to A190502 and added leading term, John W. Nicholson, May 12 2011
Extended to n = 32 by John W. Nicholson, Dec 01 2012
Extended to n = 47, using A190502 data, by John W. Nicholson, Jan 31 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 11 01:05 EDT 2024. Contains 375059 sequences. (Running on oeis4.)