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.

A386424 Numbers k such that sigma(k) has the same powerful part as k, where sigma is the sum of divisors function.

Original entry on oeis.org

1, 2, 5, 12, 13, 26, 29, 37, 41, 44, 56, 61, 73, 74, 76, 90, 101, 109, 113, 122, 137, 146, 153, 157, 172, 173, 181, 193, 218, 229, 236, 257, 268, 277, 281, 312, 313, 314, 317, 353, 362, 373, 386, 389, 397, 401, 409, 421, 433, 457, 458, 461, 509, 522, 524, 528, 541, 554, 560, 569, 601, 613, 617, 626, 641, 652, 653
Offset: 1

Views

Author

Antti Karttunen, Aug 17 2025

Keywords

Comments

Conjecture 1: the initial 1 is the only square in this sequence, and a(2) = 2 is the only term that is twice a square.
Conjecture 2: A323653 is a subsequence (which would follow from conjecture 1 (c) given there).

Crossrefs

Subsequences: A323653 (conjectured), A351549, A386425 (odd composites), A386426 (nondeficient terms).
Cf. also A006872, A351446, A387158.

Programs

  • Mathematica
    rad[n_] := Times @@ First /@ FactorInteger[n];a057521[n_] := n/Denominator[n/rad[n]^2];Select[Range[653],a057521[DivisorSigma[1,#]]==a057521[#]&] (* James C. McMahon, Aug 18 2025 *)
  • PARI
    A057521(n)=my(f=factor(n)); prod(i=1, #f~, if(f[i, 2]>1, f[i, 1]^f[i, 2], 1))
    isA386424(n) = (A057521(sigma(n))==A057521(n));

Formula

{k | A057521(A000203(k)) = A057521(k)}, or equally, {k | A387156(k) = A003557(k)}.
Showing 1-1 of 1 results.