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

A360526
Odd numbers k such that A360522(k) > 2*k.
3
15015, 19635, 21945, 23205, 25935, 26565, 31395, 33495, 33915, 35805, 39585, 41055, 42315, 42735, 45885, 47355, 49665, 50505, 51765, 54285, 55965, 58695, 61215, 64155, 68145, 70455, 72345, 77385, 80535, 82005, 83265, 84315, 91245, 95865, 102795, 112035, 116655
OFFSET
1,1
COMMENTS
First differs from A112643, A129485, A249263 at n = 46: a(46) = 165165 is not a term of these sequences.
LINKS
EXAMPLE
15015 is a term since A360522(15015) = 32256 > 2*15015.
MATHEMATICA
f[p_, e_] := p^e + e; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; q[n_] := s[n] > 2*n; Select[Range[1, 10^5, 2], q]
PROG
(PARI) isab(n) = { my(f = factor(n)); prod(i = 1, #f~, f[i, 1]^f[i, 2] + f[i, 2]) > 2*n; }
is(n) = n%2 && isab(n);
CROSSREFS
Cf. A360522.
Subsequence of A005101, A005231 and A360525.
Sequence in context: A339938 A112643 A129485 * A379031 A249263 A335052
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 10 2023
STATUS
approved