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.

A235495 Numbers n such that pi(2n) divides n.

Original entry on oeis.org

1, 2, 3, 4, 48, 50, 60, 504, 540, 546, 558, 561, 564, 567, 4204, 4212, 4220, 4228, 4232, 4236, 32270, 32290, 32305, 32310, 32325, 32345, 32350, 32355, 32360, 240426, 240432, 240504, 240510, 240516, 240522, 240528, 240534, 240540, 240546, 240648, 240678, 240684
Offset: 1

Views

Author

Vincenzo Librandi, Jan 11 2014

Keywords

Examples

			48 is in the sequence because pi(2*48) = 24 and 24 divides 48.
		

Crossrefs

Cf. A057809.

Programs

  • Mathematica
    Select[Range[10^6],IntegerQ[#/PrimePi[2#]]&]
  • PARI
    is(n)=n%primepi(2*n)==0 \\ Charles R Greathouse IV, Jan 12 2014