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.

A363642 Expansion of Sum_{k>0} x^k/(1 - k*x^k)^3.

Original entry on oeis.org

1, 4, 7, 17, 16, 55, 29, 129, 100, 311, 67, 1135, 92, 1919, 1486, 5409, 154, 17038, 191, 33491, 20938, 67871, 277, 262861, 9701, 373127, 296110, 978727, 436, 3134821, 497, 5051969, 3898522, 10027655, 474146, 39352069, 704, 49808159, 48362926, 127403221, 862, 411286429, 947
Offset: 1

Views

Author

Seiichi Manyama, Jun 13 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, (n/#)^(#-1) * Binomial[# + 1, 2] &]; Array[a, 50] (* Amiram Eldar, Jul 18 2023 *)
  • PARI
    a(n) = sumdiv(n, d, (n/d)^(d-1)*binomial(d+1, 2));

Formula

a(n) = Sum_{d|n} (n/d)^(d-1) * binomial(d+1,2).