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.

Previous Showing 11-11 of 11 results.

A318937 a(n) = 16 times the sum of the cubes of the divisors of 2*n+1.

Original entry on oeis.org

16, 448, 2016, 5504, 12112, 21312, 35168, 56448, 78624, 109760, 154112, 194688, 252016, 327040, 390240, 476672, 596736, 693504, 810464, 984704, 1102752, 1272128, 1526112, 1661184, 1887888, 2201472, 2382048, 2685312, 3073280, 3286080, 3631712, 4166528, 4431168, 4812224
Offset: 0

Views

Author

N. J. A. Sloane, Sep 15 2018

Keywords

Crossrefs

Equals 16 times A045823.
Cf. A013662.

Programs

  • Magma
    [16*DivisorSigma(3, 2*n+1): n in [0..40]]; // Vincenzo Librandi, Sep 16 2018
  • Maple
    with(numtheory);
    rJ0 := proc(k) local n,d; n:=2*k+1; 16*add(d^3, d in divisors(n)); end;
    [seq(rJ0(k),k=0..60)];
  • Mathematica
    16 DivisorSigma[3, Range[1, 75, 2]] (* Vincenzo Librandi, Sep 16 2018 *)

Formula

Sum_{k=0..n} a(k) ~ 30*zeta(4) * n^4. - Amiram Eldar, Dec 12 2023
Previous Showing 11-11 of 11 results.