A017695 Numerator of sum of -16th powers of divisors of n.
1, 65537, 43046722, 4295032833, 152587890626, 1410576509857, 33232930569602, 281479271743489, 1853020231898563, 5000076293978081, 45949729863572162, 30814514057170571, 665416609183179842, 1088993285370003137, 6568408508343827972, 18447025552981295105, 48661191875666868482
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Programs
-
Magma
[Numerator(DivisorSigma(16,n)/n^16): n in [1..20]]; // G. C. Greubel, Nov 05 2018
-
Mathematica
Table[Numerator[Total[1/Divisors[n]^16]],{n,20}] (* Harvey P. Dale, Sep 26 2014 *) Table[Numerator[DivisorSigma[16, n]/n^16], {n, 1, 20}] (* G. C. Greubel, Nov 05 2018 *)
-
PARI
vector(20, n, numerator(sigma(n, 16)/n^16)) \\ G. C. Greubel, Nov 05 2018
Comments