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.

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

Original entry on oeis.org

3, 18, 91, 879, 9396, 145010, 2470665, 50728749, 1162458352, 30058615320, 855935011911, 26761537897338, 908625319776864, 33340089815701086, 1313681976619686558, 55341921135416377497, 2481720785659010292702, 118040125809311823596960
Offset: 1

Views

Author

Seiichi Manyama, Jun 13 2023

Keywords

Crossrefs

Programs

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

Formula

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