Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A072504

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) = LCM of divisors of n which are <= sqrt(n).
(history; published version)
#14 by Joerg Arndt at Sun Mar 18 04:05:40 EDT 2018
STATUS

proposed

approved

#13 by Jon E. Schoenfield at Sun Mar 18 00:58:17 EDT 2018
STATUS

editing

proposed

#12 by Jon E. Schoenfield at Sun Mar 18 00:58:14 EDT 2018
NAME

a(n) = LCM of divisors of n which are <= sqrt(n^(1/2).

EXAMPLE

a(20) = 4: the divisors of 20 are 1,2,4,5,10 and 20. ; a(20) = LCM{ lcm(1,2,4} ) = 4.

STATUS

approved

editing

#11 by R. J. Mathar at Fri Oct 03 11:15:26 EDT 2014
STATUS

editing

approved

#10 by R. J. Mathar at Fri Oct 03 11:15:15 EDT 2014
MAPLE

A072504 := proc(n)

local ds ;

ds := [] ;

for d in numtheory[divisors](n) do

if d^2 <= n then

ds := [op(ds), d] ;

end if;

end do:

ilcm(op(ds)) ;

end proc:

seq(A072504(n), n=1..20) ; # R. J. Mathar, Oct 03 2014

STATUS

approved

editing

#9 by R. J. Mathar at Thu Oct 02 17:55:20 EDT 2014
STATUS

editing

approved

#8 by R. J. Mathar at Thu Oct 02 17:55:15 EDT 2014
LINKS

Matthew M. Conroy, <a href="http://www.madandmoonly.com/doctormatt">Home page</a> (listed instead of email address)

EXTENSIONS

More terms from _Matthew M. Conroy, _, Sep 09 2002

STATUS

approved

editing

#7 by Harvey P. Dale at Tue Aug 26 18:14:57 EDT 2014
STATUS

editing

approved

#6 by Harvey P. Dale at Tue Aug 26 18:14:54 EDT 2014
MATHEMATICA

Table[LCM@@Select[Divisors[n], #<=Sqrt[n]&], {n, 100}] (* Harvey P. Dale, Aug 26 2014 *)

STATUS

approved

editing

#5 by N. J. A. Sloane at Thu Dec 05 19:55:21 EST 2013
AUTHOR

_Amarnath Murthy (amarnath_murthy(AT)yahoo.com), _, Jul 20 2002

Discussion
Thu Dec 05
19:55
OEIS Server: https://oeis.org/edit/global/2075