cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A238277 a(n) = |{0 <= k < n: the number of primes in the interval (k*n, (k+1)*n] is a square}|.

Original entry on oeis.org

1, 2, 2, 2, 2, 2, 2, 3, 1, 3, 2, 4, 1, 5, 3, 3, 10, 11, 8, 7, 10, 6, 13, 11, 13, 8, 12, 10, 8, 7, 7, 6, 4, 5, 5, 6, 3, 4, 7, 3, 7, 7, 8, 7, 7, 9, 8, 12, 8, 5, 12, 11, 14, 11, 14, 11, 8, 11, 9, 9, 13, 12, 5, 14, 15, 12, 15, 12, 15, 14, 15, 16, 13, 10, 18, 20, 12, 7, 17, 13
Offset: 1

Views

Author

Zhi-Wei Sun, Feb 22 2014

Keywords

Comments

Conjecture: a(n) > 0 for all n > 0.
We have verified this for n up to 10^5.
See also A238278 and A238281 for related conjectures.

Examples

			a(9) = 1 since the interval (0, 9] contains exactly 2^2 = 4 primes.
a(13) = 1 since the interval (9*13, 10*13] contains exactly 1^2 = 1 prime.
		

Crossrefs

Programs

  • Mathematica
    SQ[n_]:=IntegerQ[Sqrt[n]]
    d[k_,n_]:=PrimePi[(k+1)*n]-PrimePi[k*n]
    a[n_]:=Sum[If[SQ[d[k,n]],1,0],{k,0,n-1}]
    Table[a[n],{n,1,80}]