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!)
A137868 LCM of two smallest numbers with n divisors. 1
6, 36, 24, 1296, 36, 46656, 120, 900, 240, 60466176, 360, 2176782336, 960, 1296, 840, 2821109907456, 1260, 101559956668416, 1680, 14400, 15360, 131621703842267136, 2520, 810000, 61440, 44100, 6720, 6140942214464815497216, 5040 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
a(1) is undefined because only one number (1) has 1 divisor.
LINKS
EXAMPLE
a(4) = 24 because the two smallest numbers with 4 divisors are 6 and 8 and the LCM of 6 and 8 is 24.
PROG
(PARI) A137868(i, l) = { for(n=1, i, one=0; two=0; for(j=2, l, if (numdiv(j)==n && one!=0, two=j; result=lcm(one, two); print1("n="n" one="one" two="two " result="result" "); break); if (numdiv(j) == n && one==0, one=j); ); ); } - Alexander R. Povolotsky, May 01 2008
CROSSREFS
Sequence in context: A036125 A001311 A360442 * A070401 A330681 A070400
KEYWORD
nonn
AUTHOR
J. Lowell, Apr 29 2008
EXTENSIONS
More terms from R. J. Mathar, May 03 2008
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)