OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1600
EXAMPLE
130788 is in the sequence because 130788 is divisible by 108 and 378.
MATHEMATICA
addQ[n_]:=Module[{c=FromDigits/@Transpose[Partition[ IntegerDigits[n], 2]], a, b}, a =First[c]; b=Last[c]; a!=0&&b!=0&&And@@Divisible[ n, {a, b}]]; Flatten[Table[Select[Range[10^(2n-1), 10^(2n)-1], addQ], {n, 2}]] (* Harvey P. Dale, Oct 21 2013 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Nov 09 2005
EXTENSIONS
Corrected and extended by Matthew Conroy, Dec 18 2005
STATUS
approved