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”).

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