OFFSET
1,1
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..52
Paolo P. Lava, List of k, x, y, z
EXAMPLE
540 is not in the sequence as 540 = A000203(5) * A000203(40) = 6*90 but it's the product of a tuple of size two instead of size three. - David A. Corneth, Jan 30 2026
PROG
(PARI) is(n) = {targetprod = n; found = 0; process(n, n, 0); found}
process(nprod, nconcat, qprod) = {if(nconcat == 0 && nprod == 1 && qprod == 3, found = 1); if(found == 1, return); if(qprod >= 3, return); my(d = digits(nconcat), c); for(i = 1, #d, c = nconcat%10^i; if(c == 0, next); sc = sigma(c); if(nprod % sc == 0, process(nprod \ sc, nconcat\10^i, qprod + 1)))} \\ David A. Corneth, Jan 30 2026
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jan 18 2026
EXTENSIONS
a(23) onward by Giovanni Resta, Jan 28 2026
STATUS
approved
