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

A347891
Odd numbers k such that sigma(k^2) > 2*k^2 and A003415(sigma(k^2)) < k^2.
1
495, 735, 945, 1485, 1755, 2205, 2475, 2625, 2805, 3315, 3675, 3795, 4455, 4785, 4845, 5145, 5265, 5445, 6615, 6765, 7425, 7605, 7755, 8085, 8415, 8505, 8745, 8775, 9735, 11025, 12375, 12495, 13365, 13965, 14025, 15435, 15795, 16065, 16335, 16905, 17595, 18375, 19845, 20295, 21315, 22185, 22275, 22785, 22815, 23265
OFFSET
1,1
COMMENTS
Odd numbers whose square is abundant and present in A343216.
The first term that is not a multiple of 5 is a(146) = 82467.
FORMULA
a(n) = A000196(A347890(n)).
MATHEMATICA
ad[1] = 0; ad[n_] := n * Total@(Last[#]/First[#]& /@ FactorInteger[n]); Select[Range[1, 24000, 2], DivisorSigma[1, #^2] > 2*#^2 && ad[DivisorSigma[1, #^2]] < #^2 &] (* Amiram Eldar, Sep 19 2021 *)
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
isA347891(n) = if(!(n%2), 0, my(u=n*n); (A003415(sigma(u))<u)&&(sigma(u)>(2*u)));
CROSSREFS
Square roots of A347890. Subsequence of A174830.
Sequence in context: A045007 A062903 A363050 * A059828 A160851 A031898
KEYWORD
nonn
AUTHOR
Antti Karttunen, Sep 19 2021
STATUS
approved