The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A098592 Number of primes between n*30 and (n+1)*30. 2
10, 7, 7, 6, 5, 6, 5, 6, 5, 5, 4, 6, 5, 4, 6, 5, 5, 2, 5, 5, 5, 6, 4, 4, 4, 5, 3, 6, 4, 4, 4, 4, 4, 5, 5, 4, 6, 3, 3, 4, 5, 4, 4, 6, 2, 3, 3, 5, 4, 7, 2, 5, 4, 6, 3, 4, 4, 3, 4, 4, 3, 2, 7, 3, 3, 3, 5, 5, 3, 5, 3, 5, 2, 3, 4, 4, 5, 3, 4, 7, 3, 4, 3, 1, 5, 3, 3, 3, 4, 7, 5, 4, 3, 5, 3, 4, 4, 3, 4, 2, 4, 3, 5, 2, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Number of nonzero bits in A098591(n).
The number a(n) is < 8 except for n=0. - Pierre CAMI, Jun 02 2009
For references to positions where a(n) = 7 and related explanation, see A100418. - Peter Munn, Sep 06 2023
LINKS
Dennis Martin, Proofs Regarding Primorial Patterns [Cached copy, with permission of the author].
Hugo Pfoertner, Patterns count table.
EXAMPLE
a(1)=7 because there are 7 primes in the interval (30,60): 31,37,41,43,47,53,59.
a(26)=3 because the interval of length 30 following 26*30=780 contains 3 primes: 787, 797 and 809.
PROG
(FORTRAN) See links given in A098591.
(PARI) a(n) = primepi(30*(n+1)) - primepi(30*n); \\ Michel Marcus, Apr 04 2020
(Python)
from sympy import primerange
def a(n): return len(list(primerange(n*30, (n+1)*30)))
print([a(n) for n in range(106)]) # Michael S. Branicky, Oct 07 2021
CROSSREFS
Cf. A000040 (prime numbers), A098591 (packed representation of the primes mod 30), A100418, A185641.
Sequence in context: A089245 A343540 A343551 * A016731 A324087 A068444
KEYWORD
easy,nonn
AUTHOR
Hugo Pfoertner, Sep 16 2004
EXTENSIONS
Edited by N. J. A. Sloane, Jun 12 2009 at the suggestion of R. J. Mathar
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 May 24 08:42 EDT 2024. Contains 372773 sequences. (Running on oeis4.)