OFFSET
1,2
COMMENTS
Idea is similar to A061384, which uses addition instead of multiplication.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
EXAMPLE
12 has two digits, and their product is also 2, as 1*2=2.
MATHEMATICA
Select[Range[1000000], Length[IntegerDigits[#]] == Times @@ IntegerDigits[#] &] (* Amiram Eldar, Nov 21 2018 *)
PROG
(PARI) isok(n) = my(d=digits(n)); vecprod(d) == #d; \\ Michel Marcus, Nov 22 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ivan Stoykov, Nov 21 2018
EXTENSIONS
More terms from Amiram Eldar, Nov 21 2018
STATUS
approved