OFFSET
1,1
COMMENTS
Is this sequence infinite?
There are no members of this sequence with 45 to 2000 decimal digits. Perhaps the last term is a(614640917006263790) = 77333222222222222222222222222222222222222222. - Charles R Greathouse IV, Feb 26 2018
This sequence is finite. Proof: Let k be the smallest term with more than 2000 decimal digits. Then the product of decimal digits pk of k has fewer than 2001 decimal digits (otherwise k isn't the smallest term with more than 2000 decimal digits). This number pk has at least as many decimal digits as 2^2001 has, which are 603. But then it doesn't have a nonzero multiplicative digital root per the computations of Charles R Greathouse IV. QED. - David A. Corneth, Aug 23 2018
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
5 times 4 = 20 and 2 times 0 = 0, so 54 is not in this sequence.
MATHEMATICA
multDigRoot[n_] := NestWhile[Times @@ IntegerDigits@# &, n, UnsameQ, All]; Select[Range[500], DigitCount[#, 10, 1] == 0 && multDigRoot[#] != 0 &] (* Alonso del Arte, Feb 19 2018, based on Robert G. Wilson v's program for A031347 *)
PROG
(PARI) mdr(n)=while(n>9, n=factorback(digits(n))); n
do(n)=my(v=List()); forvec(u=vector(n, i, [2, 9]), if(mdr(factorback(u)), listput(v, fromdigits(u)))); Vec(v) \\ Gives n-digit elements
\\ Charles R Greathouse IV, Feb 19 2018
CROSSREFS
KEYWORD
nonn,fini,base
AUTHOR
J. Lowell, Feb 19 2018
STATUS
approved