OFFSET
1,2
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..1000
FORMULA
a(A068191(n)) = 0 for n >=1.
a(n) <> 0 iff n in { A002473 }. - Michael S. Branicky, Jan 21 2021
EXAMPLE
113, 131, and 311 are the 3-digit numbers whose product of digits is 3; 113 is the smallest.
MATHEMATICA
Table[If[FactorInteger[n][[-1, 1]] > 9, 0, i = (10^n - 1)/9; While[i < 10^n && Times @@ IntegerDigits[i] != n, i++]; If[i == 10^n, 0, i]], {n, 30}] (* T. D. Noe, Oct 24 2011 *)
PROG
(Python)
print([A198375(n) for n in range(1, 25)]) # Michael S. Branicky, Jan 21 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Oct 23 2011
STATUS
approved