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.

A308671 a(n) = Sum_{d|n} d^(d^2).

Original entry on oeis.org

1, 17, 19684, 4294967313, 298023223876953126, 10314424798490535546171968756, 256923577521058878088611477224235621321608, 6277101735386680763835789423207666416102355444468329480209
Offset: 1

Views

Author

Seiichi Manyama, Jun 16 2019

Keywords

Crossrefs

Column k=2 of A308674.

Programs

  • Mathematica
    a[n_] := DivisorSum[n, #^(#^2) &]; Array[a, 8] (* Amiram Eldar, May 11 2021 *)
  • PARI
    {a(n) = sumdiv(n, d, d^d^2)}
    
  • PARI
    N=20; x='x+O('x^N); Vec(x*deriv(-log(prod(k=1, N, (1-x^k)^(k^(k^2-1))))))

Formula

L.g.f.: -log(Product_{k>=1} (1 - x^k)^(k^(k^2-1))) = Sum_{k>=1} a(k)*x^k/k.