login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A344755
Numbers k such that A344753(k) is a multiple of A048250(k), and k is a multiple of A344753(k)/A048250(k).
7
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,1
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.
PROG
(PARI)
A048250(n) = factorback(apply(p -> p+1, factor(n)[, 1]));
A344753(n) = sumdiv(n, d, (d<n)*(d+(issquarefree(n/d) * d)));
isA344755(n) = { my(t=A344753(n), u=A048250(n)); ((0==(t%u))&&(0==(n%(t/u)))); };
CROSSREFS
Subsequence of A344754.
Cf. also A344700.
Sequence in context: A110047 A163029 A309490 * A045722 A047129 A173081
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 29 2021
STATUS
approved