login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A095289 a(n) = the smallest number (in base 10) such that the product of its digits is >= n. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 25, 26, 26, 27, 27, 28, 28, 29, 29, 37, 37, 37, 38, 38, 38, 39, 39, 39, 47, 48, 48, 48, 48, 49, 49, 49, 49, 58, 58, 58, 58, 59, 59, 59, 59, 59, 68, 68, 68, 69, 69, 69, 69, 69, 69, 78, 78, 79, 79, 79, 79, 79, 79, 79, 88, 89, 89, 89, 89, 89, 89, 89, 89 (list; graph; refs; listen; history; text; internal format)
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.
LINKS
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
Sequence in context: A347189 A068189 A069716 * A174141 A343403 A095706
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 17:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)