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”).
%I #8 Jan 26 2015 00:38:13
%S 12,24,35,56
%N 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.
%C It seems that there are no further terms.
%C No other terms below 10^150. - _Max Alekseyev_, Jan 25 2015
%e 56 is in the sequence because 56=(5+2)*(6+2).
%t Do[d=IntegerDigits[n];k=Length[d];If[n==Product[d[[j]]+2, {j, k}], Print[n]], {n, 10000000}]
%Y Cf. A098114, A097371, A097372.
%K base,nonn,more,hard
%O 1,1
%A _Farideh Firoozbakht_, Sep 24 2004