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”).

A351443
Odd numbers k for which A003958(sigma(k)) = A003958(k), where A003958 is multiplicative with a(p^e) = (p-1)^e and sigma is the sum of divisors function.
5
1, 49, 40905, 106353, 140211, 275301, 302697, 499041, 597213, 1094913, 1284417, 1578933, 2004345, 2266137, 2560653, 3247857, 3444201, 3738717, 4425921, 5014953, 5123817, 5211297, 5407641, 5505813, 5996673, 6193017, 6870339, 7174737, 8156457, 8941833, 9432693, 9825381, 9923553
OFFSET
1,2
COMMENTS
Odd numbers k for which A351442(k) = A003958(k), or equally, for which k = A351444(k) = A322582(k) + A351442(k).
The 13th term, 2004345, is one of the rare abundant numbers (A005101, A005231) in this sequence.
PROG
(PARI)
A003958(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]--); factorback(f); };
A351442(n) = A003958(sigma(n));
isA351443(n) = ((n%2) && (A351442(n)==A003958(n)));
CROSSREFS
Odd terms in A351446.
These terms doubled form a subsequence of A351447.
Sequence in context: A173171 A100418 A369698 * A239169 A134725 A203499
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 12 2022
STATUS
approved