A386781 a(n) = n^3*sigma_7(n).
0, 1, 1032, 59076, 1056832, 9765750, 60966432, 282475592, 1082196480, 3488379453, 10078254000, 25937425932, 62433407232, 137858494046, 291514810944, 576921447000, 1108169199616, 2015993905362, 3600007595496, 6131066264660, 10320757104000, 16687528072992, 26767423561824
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Crossrefs
Programs
-
Magma
[0] cat [n^3*DivisorSigma(7, n): n in [1..35]]; // Vincenzo Librandi, Aug 04 2025
-
Mathematica
Table[n^3*DivisorSigma[7, n], {n, 0, 30}] (* or *) nmax = 30; CoefficientList[Series[Sum[k^10*x^k*(x^(2*k) + 4*x^k + 1)/(1 - x^k)^4, {k, 1, nmax}], {x, 0, nmax}], x] (* or *) terms = 30; E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}]; E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}]; E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}]; CoefficientList[Series[(3*E2[x]^3*E4[x]^2 + 5*E2[x]*E4[x]^3 - 9*E2[x]^2*E4[x]*E6[x] - 3*E4[x]^2*E6[x] + 4*E2[x]*E6[x]^2)/3456, {x, 0, terms}], x]