A089584 Numbers n which are a proper multiple (>1) of A068505(n) (= n read in base m+1 where m = largest digit of n).
10, 21, 40, 100, 112, 120, 210, 306, 400, 516, 624, 630, 1000, 1010, 1102, 1320, 1344, 1422, 2223, 2240, 2301, 3430, 4000, 10000, 10100, 10101, 10356, 10360, 11220, 12320, 13440, 14220, 20202, 21112, 21210, 21416, 22400, 30303, 33036, 34300
Offset: 1
Examples
a(5)=112 because 112 in base 3 yields 14 in base 10, which evenly divides 112 (112/14 = 8). a(21)=2301 because 2301 in base 4 yields 177, which evenly divides 2301 (2301/177=13).
Crossrefs
Programs
-
PARI
is_A089584(n,d,b)={ 10>(b=1+vecmax(d=eval(Vec(Str(n))))) & n%sum(i=1,#d,d[i]*b^(#d-i))==0 }
Extensions
Definition reworded by M. F. Hasler, Apr 05 2009
Comments