OFFSET
1,2
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
FORMULA
EXAMPLE
Divisors of n = 20: {1,2,4,5,10,20}, 4 = 2^2 and 20 = 5*2^2, therefore a(20) = 1*2*5*10 = 100.
MATHEMATICA
Table[Times@@Select[Divisors[n], SquareFreeQ], {n, 60}] (* Harvey P. Dale, Jul 03 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 09 2002
STATUS
approved