login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078218 Smallest multiple of n that begins with the concatenation of the divisors of n (in increasing order). 1
1, 12, 132, 124, 15, 1236, 175, 1248, 1395, 12510, 1111, 12346128, 1131, 127148, 13515, 124816, 1173, 12369186, 1197, 12451020, 137214, 12112210, 12305, 1234681224, 1525, 1213264, 1392714, 1247142820, 12905, 12356101530, 13113 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
The concatenation of the divisors of 7 is 17; 175 = 25*7 is the smallest multiple of 7 that begins with 17, so a(7) = 175.
PROG
(PARI) {for(n=1, 31, k=floor(log(n)/log(10))+1; d=divisors(n); v=Str(); for(i=1, matsize(d)[2], v=concat(v, Str(d[i]))); s=eval(v); t=s+1; m=floor(log(s)/log(10))+1; d=k-m; s=s*10^d; t=t*10^d; b=1; while(b>0, q=floor(s/n); while(b>0&&(p=q*n)<t, if(p>=s, print1(p, ", "); b=0, q++)); s=10*s; t=10*t))}
CROSSREFS
Cf. A078810.
Sequence in context: A160962 A097783 A260018 * A305261 A048643 A111085
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 22 2002
EXTENSIONS
Edited and extended by Klaus Brockhaus, Dec 06 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)