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.

Showing 1-1 of 1 results.

A346758 a(n) = Sum_{d|n} mu(n/d) * floor(d^2/4).

Original entry on oeis.org

0, 1, 2, 3, 6, 6, 12, 12, 18, 18, 30, 24, 42, 36, 48, 48, 72, 54, 90, 72, 96, 90, 132, 96, 150, 126, 162, 144, 210, 144, 240, 192, 240, 216, 288, 216, 342, 270, 336, 288, 420, 288, 462, 360, 432, 396, 552, 384, 588, 450, 576, 504, 702, 486, 720, 576, 720, 630, 870, 576, 930
Offset: 1

Views

Author

Ilya Gutkovskiy, Aug 02 2021

Keywords

Comments

Moebius transform of quarter-squares (A002620).

Crossrefs

Programs

  • Mathematica
    Table[Sum[MoebiusMu[n/d] Floor[d^2/4], {d, Divisors[n]}], {n, 1, 61}]
    nmax = 61; CoefficientList[Series[Sum[MoebiusMu[k] x^(2 k)/((1 + x^k) (1 - x^k)^3), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
  • PARI
    a(n) = sumdiv(n, d, moebius(n/d)*(d^2\4)); \\ Michel Marcus, Aug 03 2021

Formula

G.f.: Sum_{k>=1} mu(k) * x^(2*k) / ((1 + x^k) * (1 - x^k)^3).
a(n) = J_2(n) / 4 for n >= 3, where J_() is the Jordan function.
Showing 1-1 of 1 results.