OFFSET
1,2
COMMENTS
a(n) = n iff n is not a composite number.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The divisors of 20 are 1, 2, 4, 5, 10 and 20. a(20) = 5*10*20= 1000.
MATHEMATICA
Table[Times @@ Select[Divisors[n], # >= Sqrt[n] &], {n, 1, 55}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jul 20 2002
EXTENSIONS
Edited by Robert G. Wilson v, Jul 22 2002
Corrected a(16) by Harvey P. Dale, Oct 06 2011
STATUS
approved