A357605 Numbers k such that A162296(k) > 2*k.
36, 48, 72, 80, 96, 108, 120, 144, 160, 162, 168, 180, 192, 200, 216, 224, 240, 252, 264, 270, 280, 288, 300, 312, 320, 324, 336, 352, 360, 378, 384, 392, 396, 400, 408, 416, 432, 448, 450, 456, 468, 480, 486, 500, 504, 528, 540, 552, 560, 576, 588, 594, 600, 612
Offset: 1
Keywords
Examples
36 is a term since A162296(36) = 79 > 2*36.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
q[n_] := Module[{f = FactorInteger[n], p, e}, p = f[[;; , 1]]; e = f[[;; , 2]]; Times @@ ((p^(e + 1) - 1)/(p - 1)) - Times @@ (p + 1) > 2*n]; Select[Range[2, 1000], q]
Comments