OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..38
EXAMPLE
24 is a term since isigma(24) = 60 and isigma(22) + isigma(23) = 36 + 24 = 60.
MATHEMATICA
fun[p_, e_] := Module[{b = IntegerDigits[e, 2]}, m = Length[b]; Product[If[b[[j]] > 0, 1 + p^(2^(m - j)), 1], {j, 1, m}]]; isigma[1] = 1; isigma[n_] := Times @@ fun @@@ FactorInteger[n]; Select[Range[3, 10^5], isigma[#] == isigma[# - 1] + isigma[# - 2] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 04 2020
STATUS
approved