OFFSET
1,1
COMMENTS
There are 25 terms in the sequence; the 25-digit number 3608528850368400786036725 is the largest number to satisfy the requirements.
LINKS
Shyam Sunder Gupta, Table of n, a(n) for n = 1..25
EXAMPLE
There are nine one-digit numbers divisible by 1; the largest is 9 so a(1)=9.
For two-digit numbers, the second digit must be even (0,2,4,6,8) to make it divisible by 2, which gives 98 as the largest to satisfy the requirement, so a(2)=98.
MATHEMATICA
a=Table[j, {j, 9}]; r=2; t={}; While[!a == {}, n=Length[a]; nmax=Last[a]; k=1; b={}; While[!k>n, z0=a[[k]]; Do[z=10*z0+j; If[Mod[z, r]==0, b=Append[b, z]], {j, 0, 9}]; k++]; AppendTo[t, nmax]; a=b; r++]; t
CROSSREFS
KEYWORD
nonn,base,fini
AUTHOR
Shyam Sunder Gupta, Aug 04 2013
STATUS
approved