OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..456 (terms below 10^12)
EXAMPLE
2666847104 is in the sequence since 2666847104, 2666847105 and 2666847106 are all infinitary abundant numbers (A129656): isigma(2666847104) = 5401952640 > 2 * 2666847104, isigma(2666847105) = 5374656000 > 2 * 2666847105, and isigma(2666847106) = 5419376640 > 2 * 2666847106 (isigma is the sum of infinitary divisors, A049417).
MATHEMATICA
f[p_, e_] := p^(2^(-1 + Position[Reverse @ IntegerDigits[e, 2], _?(# == 1 &)])); isigma[1] = 1; isigma[n_] := Times @@ (Flatten@(f @@@ FactorInteger[n]) + 1); abQ[n_] := isigma[n] > 2*n; v = Cases[Import["https://oeis.org/A096536/b096536.txt", "Table"], {_, _}][[;; , 2]]; Select[v, And @@ abQ /@ (# + {0, 1, 2}) &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 18 2022
STATUS
approved