A324367 Numbers k such that s(k) = s(k+1) where s(k) is the sum of divisors of k that are larger than sqrt(k) (A238535).
45, 62, 15795, 355022, 14257705, 28856174, 2324581982, 103321586193
Offset: 1
Examples
45 is in the sequence since A238535(45) = A238535(46) = 69.
Programs
-
Mathematica
s[n_] := DivisorSum[n, # &, # > Sqrt[n] &]; seq={}; s1 = 0; Do[s2 = s[n]; If[s1 == s2, AppendTo[seq, n - 1]]; s1 = s2, {n, 2, 10000}]; seq
Extensions
a(8) from Giovanni Resta, Sep 06 2019
Comments