OFFSET
1,1
COMMENTS
It is understood that none of A,R,B may have leading zeros.
Terms 101 < a(n) < 200 are exactly the numbers in that range which are in A112651.
LINKS
E. Angelini and J. Tramu, DigIt, 2013
EXAMPLE
a(1) = 100 = concat(1,1*0,0).
The first 4-digit terms are 1000 = concat(10,10*0,0), 1019 = concat(10,10-9,9), 1025 = concat(10,10/5,5).
PROG
(PARI) is(n)={d=#digits(n); forvec(s=vector(2, i, [1, d-1]), (10^s[1]>10*B=n%10^s[1])&&s[1]>1&&next; (10^s[2]>10*R=n%10^s[2])&&s[2]>s[1]+1&&next; setsearch(Set([B+A=n\10^s[2], A-B, A*B, if(B, A/B)]), R\10^s[1])&&return([A, R\10^s[1], B]), 2)}
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini and M. F. Hasler, Oct 11 2014
STATUS
approved