A169806 Nonpalindromic numbers k such that k = R(k) + P(k) where R(k) is reversal(k) and P(k) is the product of the digits of k.
354253, 385863, 398573, 534235, 653936, 676356, 682566, 695276, 853638, 35369253, 35639453, 45469254, 45636454, 45839454, 53369235, 53639435, 54469245, 54636445, 54839445, 55769255, 56814665, 56941765, 59236195
Offset: 1
Examples
354253 = 352453 + 3*5*4*2*5*3 = reversal(354253) + 3*5*4*2*5*3, so 354253 is a term.
Programs
-
Mathematica
r[n_] := FromDigits[Reverse[IntegerDigits[n]]]; Do[ If[n > r[n] && n == r[n] + Apply[Times, IntegerDigits[n]], Print[n]], {n, 59500000}]
Comments