OFFSET
1,2
COMMENTS
This seems to be a nondecreasing sequence, at least to 10^5. - Robert G. Wilson v, Jul 05 2004
REFERENCES
ARML 2002, Team event, Question 1.
EXAMPLE
a(13) = 27 because 2*7 = 14 >= 13 and no number smaller than 27 has this property.
MATHEMATICA
f[n_] := Block[{k = n}, While[Times @@ IntegerDigits[k] < n, k++ ]; k]; Table[ f[n], {n, 75}] (* Robert G. Wilson v, Jul 05 2004 *)
Module[{nn=100, pd}, pd=Table[{n, Times@@IntegerDigits[n]}, {n, nn}]; Table[SelectFirst[pd, #[[2]]>= k&], {k, 80}]][[;; , 1]] (* Harvey P. Dale, Jul 25 2023 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Sam Handler (sam_5_5_5_0(AT)yahoo.com), Jul 02 2004
EXTENSIONS
More terms from Robert G. Wilson v, Jul 05 2004
STATUS
approved