login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A098685
Numbers n such that pi(n) = sigma(d_1)*sigma(d_2)*...*sigma(d_k) where d_1 d_2 ... d_k is the decimal expansion of n.
5
15, 155, 252, 916, 1189, 12654, 55293, 177554, 418634, 753248, 885193, 18252678, 18252687, 18469156, 18469165, 19882616, 19882623, 41867246, 73526936, 73526957, 233843449, 244895519, 2345784285, 2399877831, 4273447776, 29891923496, 42649454852, 728781494646
OFFSET
1,1
COMMENTS
a(n) must necessarily be a zeroless number. - Chai Wah Wu, Mar 04 2019
LINKS
EXAMPLE
885193 is in the sequence because pi(885193) = sigma(8)*sigma(8)*sigma(5)*sigma(1)*sigma(9)*sigma(3).
MATHEMATICA
Do[d=IntegerDigits[n]; k=Length[d]; If[ !MemberQ[d, 0]&&PrimePi[n]== Product[DivisorSigma[1, d[[j]]], {j, k}], Print[n]], {n, 10000000}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Farideh Firoozbakht, Sep 24 2004
EXTENSIONS
a(12)-a(25) from Donovan Johnson, Jun 18 2009
a(26)-a(28) from Chai Wah Wu, Mar 04 2019
STATUS
approved