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.

A139182 Numbers m such that pi(m) = d_1!!*d_2!!*...*d_k!! where d_1 d_2 ... d_k is the decimal expansion of m.

Original entry on oeis.org

50, 51, 125, 15405, 26205, 226700, 226701, 226710, 226711, 513090, 513091, 1351832, 8210065
Offset: 1

Views

Author

Farideh Firoozbakht, Apr 19 2008

Keywords

Comments

Numbers m with a product of the double-factorials of the digits equal to A000720(m).
If { m is in the sequence, 10 divides m and m+1 is composite } then m+1 is in the sequence. [Clarified by N. J. A. Sloane, Feb 06 2022]

Examples

			pi(8210065)=8!!*2!!*1!!*0!!*0!!*6!!*5!!.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[83*10^5],Times@@(IntegerDigits[#]!!)==PrimePi[#]&] (* Harvey P. Dale, Apr 12 2024 *)