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

A349065
Odd numbers k such that A183097(k) > 2*k.
2
3472875, 10418625, 17364375, 24310125, 31255875, 52093125, 72930375, 86821875, 93767625, 121550625, 156279375, 170170875, 202145625, 218791125, 260465625, 281302875, 364651875, 420217875, 434109375, 468838125, 510512625, 586915875, 606436875, 607753125, 656373375
OFFSET
1,1
COMMENTS
The odd terms of A349064.
LINKS
EXAMPLE
3472875 is a term since A183097(3472875) = 7002474 > 2*3472875 = 6945750.
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/(p - 1) - p; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; q[n_] := s[n] > 2*n; Select[Range[1, 2.5*10^7, 2], q]
CROSSREFS
Subsequence of A005101, A005231 and A349064.
Sequence in context: A036473 A154871 A206107 * A204335 A365888 A240105
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 07 2021
STATUS
approved