A017704 Denominator of sum of -20th powers of divisors of n.
1, 1048576, 3486784401, 1099511627776, 95367431640625, 1828079220031488, 79792266297612001, 1152921504606846976, 12157665459056928801, 50000000000000000000, 672749994932560009201, 638959998741245853696
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A017703.
Programs
-
Magma
[Denominator(DivisorSigma(20,n)/n^20): n in [1..20]]; // G. C. Greubel, Nov 05 2018
-
Mathematica
Denominator[DivisorSigma[-20,Range[20]]] (* Harvey P. Dale, Dec 31 2014 *) Table[Denominator[DivisorSigma[20, n]/n^20], {n, 1, 20}] (* G. C. Greubel, Nov 05 2018 *)
-
PARI
vector(20, n, denominator(sigma(n, 20)/n^20)) \\ G. C. Greubel, Nov 05 2018
Comments