A094348 Numbers n such that, for some numbers (j,k), j<=k, n is the smallest positive multiple of j (or more) of the first k positive integers.
1, 2, 4, 6, 12, 24, 36, 48, 60, 72, 120, 180, 240, 360, 420, 720, 840, 1260, 1680, 2520, 5040, 7560, 10080, 15120, 20160, 25200, 27720, 30240, 45360, 50400, 55440, 83160, 110880, 166320, 221760, 277200, 332640, 360360, 498960, 554400, 665280, 720720
Offset: 1
Keywords
Examples
72 is a multiple of seven of the first nine positive integers (namely, 1, 2, 3, 4, 6, 8 and 9). It is the smallest positive integer for which this is true.
Links
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 844.
- J. Britton, Perfect Number Analyzer
- Wikipedia, Table of divisors.
- Peter Luschny, More terms, OEIS wiki.
Programs
-
PARI
\\ Computes the first 50 terms of A094348 A094348() = {local(n,i,R,A,len,count,change,high,lim); lim = 7208000; R = vector(500); A = vector(50); A[1]=1; A[2]=2; A[3]=4; A[4]=6; A[5]=12; count=5; high=0; n=12; while(n < lim, d=divisors(n); len=length(d); change=0; for(i=1,min(len,high),if(R[i]>d[i],R[i]=d[i];change=1)); if(len>high,for(i=high+1,len,R[i]=d[i]); high=len); if(change, count++; A[count] = n); n += 12; ); write("A094348.txt", vector(count, i, A[i])); } \\ Peter Luschny, Dec 29 2010
Extensions
More terms from David Wasserman, Jun 28 2007
Title edited by Matthew Vandermast, Nov 20 2010
Comments