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.

A344442 a(n) = A332844(n) - n.

Original entry on oeis.org

0, 1, 1, 4, 1, 6, 1, 10, 5, 8, 1, 20, 1, 10, 9, 23, 1, 24, 1, 28, 11, 14, 1, 48, 7, 16, 17, 36, 1, 42, 1, 49, 15, 20, 13, 76, 1, 22, 17, 68, 1, 54, 1, 52, 39, 26, 1, 108, 9, 46, 21, 60, 1, 78, 17, 88, 23, 32, 1, 132, 1, 34, 49, 102, 19, 78, 1, 76, 27, 74, 1, 180, 1, 40, 53, 84, 19, 90, 1, 154, 54, 44, 1, 172, 23, 46
Offset: 1

Views

Author

Antti Karttunen, May 23 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[DivisorSum[n, Boole[IntegerQ[(n/#)^(1/2)]] DivisorSigma[1, #] &] - n, {n, 86}] (* Michael De Vlieger, May 24 2021 *)
  • PARI
    A332844(n) = sumdiv(n,d, issquare(n/d) * sigma(d));
    A344442(n) = (A332844(n) - n);

Formula

a(n) = A332844(n) - n.
a(n) = Sum_{d|n} A000010(n/d) * (A124315(d)-1).
Sum_{k=1..n} a(k) ~ c * n^2 / 2, where c = Pi^6/540 - 1 = 0.7803503... . - Amiram Eldar, Dec 04 2024