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.

A344081 a(n) = Sum_{d|n} tau(d)^d, where tau(n) is the number of divisors of n.

Original entry on oeis.org

1, 5, 9, 86, 33, 4109, 129, 65622, 19692, 1048613, 2049, 2176786526, 8193, 268435589, 1073741865, 152587956247, 131073, 101559956692208, 524289, 3656158441111670, 4398046511241, 17592186046469, 8388609, 4722366482871822065758
Offset: 1

Views

Author

Seiichi Manyama, May 09 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, DivisorSigma[0, #]^# &]; Array[a, 24] (* Amiram Eldar, May 09 2021 *)
  • PARI
    a(n) = sumdiv(n, d, numdiv(d)^d);
    
  • PARI
    my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, (numdiv(k)*x)^k/(1-x^k)))

Formula

G.f.: Sum_{k >= 1} (tau(k) * x)^k/(1 - x^k).
If p is prime, a(p) = 1 + 2^p.