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.

A359732 a(n) = Sum_{d|n} d^(2*d-1).

Original entry on oeis.org

1, 9, 244, 16393, 1953126, 362797308, 96889010408, 35184372105225, 16677181699666813, 10000000000001953134, 7400249944258160101212, 6624737266949237373933820, 7056410014866816666030739694, 8819763977946281130541873428720
Offset: 1

Views

Author

Seiichi Manyama, Jan 12 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, #^(2*# - 1) &]; Array[a, 15] (* Amiram Eldar, Aug 14 2023 *)
  • PARI
    a(n) = sumdiv(n, d, d^(2*d-1));
    
  • PARI
    my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, k^(2*k-1)*x^k/(1-x^k)))

Formula

G.f.: Sum_{k>0} k^(2*k-1) * x^k / (1 - x^k).