OFFSET
1,1
COMMENTS
Some entries, namely 12, 18, 24, 35, 50, 56, 90, 120, 210, 315, 840, 4752, 7744, 917280 (up to 10^20), have 2 representations, e.g., 840 for c=6 and c=-14 or 917280 for c=6 and c=-15. Sequence is infinite since contains 35*10^k, 315*10^k, 18*10^k and 5*10^k, for k>=0 and c=-10.
EXAMPLE
315 belongs since 315=|(4+3)(4+1)(4+5)|
728 belongs since 728=|(-15+7)(-15+2)(-15+8)|
MATHEMATICA
L = {}; Do[d = IntegerDigits@n; Do[If[n == Abs[Times @@ (d + c)], AppendTo[L, {n, c}]; Print[{n, c}]], {c, -19, 10}], {n, 10, 1000000}]; Print[Union[Transpose[L][[1]]]]; L
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Jan 17 2006
STATUS
approved