A017689 Numerator of sum of -13th powers of divisors of n.
1, 8193, 1594324, 67117057, 1220703126, 1088524711, 96889010408, 549822930945, 2541867422653, 5000610355659, 34522712143932, 26751583696117, 302875106592254, 99226457784093, 648732096885608, 4504149450301441, 9904578032905938, 6941839931265343, 42052983462257060
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Programs
-
Magma
[Numerator(DivisorSigma(13,n)/n^13): n in [1..20]]; // G. C. Greubel, Nov 06 2018
-
Maple
A017689 := proc(n) numtheory[sigma][-13](n) ; numer(%) ; end proc: # R. J. Mathar, Sep 21 2017
-
Mathematica
Table[Numerator[DivisorSigma[13, n]/n^13], {n, 1, 20}] (* G. C. Greubel, Nov 06 2018 *)
-
PARI
vector(20, n, numerator(sigma(n, 13)/n^13)) \\ G. C. Greubel, Nov 06 2018
Comments