A277169 Product of squares of proper divisors of n.
1, 1, 1, 4, 1, 36, 1, 64, 9, 100, 1, 20736, 1, 196, 225, 4096, 1, 104976, 1, 160000, 441, 484, 1, 191102976, 25, 676, 729, 614656, 1, 729000000, 1, 1048576, 1089, 1156, 1225, 78364164096, 1, 1444, 1521, 4096000000, 1, 5489031744, 1, 3748096, 4100625, 2116, 1, 28179280429056, 49, 6250000
Offset: 1
Examples
a(6) = 36 because 6 has 3 proper divisors {1,2,3} and 1^2*2^2*3^2 = 36.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Divisor Product
- Eric Weisstein's World of Mathematics, Proper divisors
Programs
-
Maple
seq(n^(numtheory:-tau(n)-2), n=1..50); # Robert Israel, Nov 13 2016
-
Mathematica
Table[n^(DivisorSigma[0, n] - 2), {n, 1, 50}]