A110070 Numbers n such that n=pi(d_1!*d_2!*...*d_k!) where d_1 d_2 ... d_k is the decimal expansion of n.
0, 3, 34, 52, 2800414
Offset: 1
Examples
2800414 is in the sequence because 2800414=pi(2!*8!*0!*0!*4!*1!*4!).
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.
2800414 is in the sequence because 2800414=pi(2!*8!*0!*0!*4!*1!*4!).
11387 is in the sequence because 11387 = pi(1!!*1!!*3!!*8!!*7!!).
Do[h = IntegerDigits[n]; l = Length[h]; If[n == PrimePi[ Product[h[[k]]!!, {k, l}]], Print[n]], {n, 0, 50000}]
Comments