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.

A344755 Numbers k such that A344753(k) is a multiple of A048250(k), and k is a multiple of A344753(k)/A048250(k).

Original entry on oeis.org

6, 28, 150, 496, 528, 1980, 4560, 8128, 8736, 11400, 19872, 20664, 75840, 82080, 253080, 254880, 741744, 1627290, 5130300, 5607360, 7529760, 19645440, 20718720, 33550336, 35092512, 45643392, 45995040, 56424960, 86944320, 169910136, 174013920, 180442080, 196378992, 242040960, 304577280, 314511360, 326611440, 451344960
Offset: 1

Views

Author

Antti Karttunen, May 29 2021

Keywords

Comments

Numbers k for which A344753(k)/A048250(k) is a divisor of k.
Perfect numbers (A000396, including also any hypothetical odd terms) are included as only on them A001615 coincides with A344753, and because A001615(n) = A003557(n)*A048250(n), with A003557(n) being a divisor of n.

Crossrefs

Subsequence of A344754.
Cf. also A344700.

Programs

  • PARI
    A048250(n) = factorback(apply(p -> p+1,factor(n)[,1]));
    A344753(n) = sumdiv(n,d,(dA344755(n) = { my(t=A344753(n),u=A048250(n)); ((0==(t%u))&&(0==(n%(t/u)))); };