login
A098113
Numbers n such that n=(d_1+2)*(d_2+2)*...*(d_k+2) where d_1 d_2 ... d_k is the decimal expansion of n.
5
12, 24, 35, 56
OFFSET
1,1
COMMENTS
It seems that there are no further terms.
No other terms below 10^150. - Max Alekseyev, Jan 25 2015
EXAMPLE
56 is in the sequence because 56=(5+2)*(6+2).
MATHEMATICA
Do[d=IntegerDigits[n]; k=Length[d]; If[n==Product[d[[j]]+2, {j, k}], Print[n]], {n, 10000000}]
CROSSREFS
KEYWORD
base,nonn,more,hard
AUTHOR
Farideh Firoozbakht, Sep 24 2004
STATUS
approved