login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360526 Odd numbers k such that A360522(k) > 2*k. 2
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 (list; graph; refs; listen; history; text; internal format)
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 * A249263 A335052 A294026
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 10 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 8 18:48 EDT 2024. Contains 375023 sequences. (Running on oeis4.)