cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A386781 a(n) = n^3*sigma_7(n).

Original entry on oeis.org

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

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

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]

Formula

G.f.: Sum_{k>=1} k^10*x^k*(x^(2*k) + 4*x^k + 1)/(1 - x^k)^4.
a(n) = (3*A386813(n) + 5*A282549(n) - 9*A282792(n) - 3*A058550(n) + 4*A282576(n))/3456.
a(n) = n^3*A013955(n).
Dirichlet g.f.: zeta(s-3)*zeta(s-10). - R. J. Mathar, Aug 03 2025