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.

A344210 a(n) = Sum_{d|n} mu(n/d) * d^n / phi(n).

Original entry on oeis.org

1, 3, 13, 120, 781, 22932, 137257, 4177920, 64566801, 2497558338, 28531167061, 2228476723200, 25239592216021, 1851888100411464, 54736732481116543, 2305807824841605120, 51702516367896047761, 6557709646516945221396, 109912203092239643840221
Offset: 1

Views

Author

Seiichi Manyama, May 12 2021

Keywords

Crossrefs

Main diagonal of A263950.

Programs

  • Mathematica
    Table[DivisorSum[n,MoebiusMu[n/#]*#^n/EulerPhi[n]&],{n,20}] (* Giorgos Kalogeropoulos, May 13 2021 *)
  • PARI
    a(n) = sumdiv(n, d, moebius(n/d)*d^n)/eulerphi(n);

Formula

a(n) = J_n(n) / phi(n) = A067858(n) / A000010(n).
a(n) = (1/n) * Sum_{d|n} mu(n/d)*sigma(d^n). - Ridouane Oudra, Apr 03 2025