OFFSET
1,2
COMMENTS
Numbers with root value 1 are the 'repunits' (see A000042).
This sequence has density 1. - Franklin T. Adams-Watters, Apr 01 2009
Any integer with at least one 0 among its base 10 digits is in this sequence. - Alonso del Arte, Aug 29 2014
This sequence is 10-automatic: it contains numbers with a 0, or with a 5 and any even digit. - Charles R Greathouse IV, Feb 13 2017
LINKS
Franklin T. Adams-Watters, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Multiplicative Digital Root
EXAMPLE
20 is in the sequence because 2 * 0 = 0.
25 is in the sequence because 2 * 5 = 10 and 1 * 0 = 0.
MATHEMATICA
mdr0Q[n_]:=NestWhile[Times@@IntegerDigits[#]&, n, #>9&]==0; Select[Range[ 0, 200], mdr0Q] (* Harvey P. Dale, Jul 21 2020 *)
PROG
(PARI) is(n)=factorback(digits(n))==0 \\ Charles R Greathouse IV, Feb 13 2017
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Patrick De Geest, Sep 15 1998
STATUS
approved