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.

A308670 a(n) = Sum_{d|n} d^(d*n).

Original entry on oeis.org

1, 17, 19684, 4294967553, 298023223876953126, 10314424798490535546559373642, 256923577521058878088611477224235621321608, 6277101735386680763835789423207666416120802188537744130049
Offset: 1

Views

Author

Seiichi Manyama, Jun 16 2019

Keywords

Crossrefs

Column k=2 of A308676.

Programs

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

Formula

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