OFFSET
1,2
COMMENTS
More than the usual number of terms are shown to distinguish the sequence from A034048.
Appears to be finite with 219 members, the largest being 3111.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..219
PROG
(Python)
def ok(n):
if n < 10: return n != 0
s = str(n)
if "0" in s: return False
return all(ok(int(s[:i])*int(s[i:])) for i in range(1, len(s)))
print([k for k in range(117) if ok(k)]) # Michael S. Branicky, Apr 02 2023
(PARI) A361978=select( {is_A361978(n)=vecmin(digits(n))&& !for(p=1, logint(n, 10), is_A361978(vecprod(divrem(n, 10^p)))|| return)}, [1..10^5]) \\ Conjecturedly the full list: no terms between 3112 and 10^5. - M. F. Hasler, Apr 05 2023
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michael S. Branicky, Apr 02 2023
STATUS
approved