A110072 Numbers k such that k = sigma(d_1!!*d_2!!*...*d_j!!) where d_1 d_2 ... d_j is the decimal expansion of k.
1, 163800, 1547520, 81254720
Offset: 1
Examples
81254720 is a term because 81254720 = sigma(8!!*1!!*2!!*5!!*4!!*7!!*2!!*0!!).
Programs
-
Mathematica
Do[h = IntegerDigits[n]; l = Length[h]; If[n == DivisorSigma[1, Product[h[[k]]!!, {k, l}]], Print[n]], {n, 0, 100000000}]
Comments