OFFSET
1,1
COMMENTS
The same digit may not be used twice as both an "outer" and "inner" digit. For example, 11211 is not in the sequence, but 1112111 is.
Leading zeros are not allowed.
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
EXAMPLE
482 is in the sequence because 4*2 = 8.
4205 is in the sequence because 4*5 = 20.
100 is in the sequence because 1*0 = 0. However, 1200 is not because even though 12*0 = 0, 12 and 0 do not have the same number of digits. Likewise, 12|0|00 and 12|00|00 are not in the sequence because leading zeros are not allowed.
PROG
(R)
y=c(); for(i in 1:9) for(j in 0:9) y=c(y, as.numeric(paste(i, i*j, j, sep=""))); sort(y)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Alan Wing-lun, Christian N. K. Anderson, Kevin L. Schwartz, May 23 2013
STATUS
approved