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.

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

Original entry on oeis.org

2, 11, 58, 565, 6256, 95762, 1647094, 33752329, 774919720, 20029303030, 570623341234, 17838801038274, 605750213184520, 22226048320465666, 875787902918124708, 36894332593824661521, 1654480523772673528372, 78693266840741507386757
Offset: 1

Views

Author

Seiichi Manyama, Jun 13 2023

Keywords

Crossrefs

Programs

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

Formula

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