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.

A212212 Array read by antidiagonals: pi(n) + pi(k) - pi(n+k), where pi() = A000720.

Original entry on oeis.org

-1, -1, -1, 0, 0, 0, -1, 0, 0, -1, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, -1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 2, 1, 2, 1, 2, 1, 0, -1, 0, 1, 1, 1, 1, 1, 1, 0, -1, 0, 0, 1, 1, 2, 1, 2, 1, 1, 0, 0, -1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, -1, 0, 0, 1, 0, 1, 1, 2, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0
Offset: 1

Views

Author

N. J. A. Sloane, May 04 2012

Keywords

Comments

It is conjectured that pi(x) + pi(y) >= pi(x+y) for 1 < y <= x.

Examples

			Array begins:
  -1, -1,  0, -1,  0, -1,  0,  0,  0, -1,  0, -1, ...
  -1,  0,  0,  0,  0,  0,  1,  1,  0,  0,  0,  0, ...
   0,  0,  1,  0,  1,  1,  2,  1,  1,  0,  1,  1, ...
  -1,  0,  0,  0,  1,  1,  1,  1,  0,  0,  1,  1, ...
   0,  0,  1,  1,  2,  1,  2,  1,  1,  1,  2,  1, ...
  -1,  0,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1, ...
   0,  1,  2,  1,  2,  1,  2,  2,  2,  1,  2,  1, ...
   0,  1,  1,  1,  1,  1,  2,  2,  1,  1,  1,  1, ...
   ...
		

References

  • D. S. Mitrinovic et al., Handbook of Number Theory, Kluwer, Section VII.5, p. 235.

Crossrefs

Cf. A000720, A212210-A212213, A060208, A047885, A047886. First row and column are -A010051.

Programs

  • Mathematica
    a[n_, k_] := PrimePi[n] + PrimePi[k] - PrimePi[n+k]; Flatten[ Table[a[n-k, k], {n, 1, 15}, {k, 1, n-1}]] (* Jean-François Alcover, Jul 18 2012 *)