A247111 Integers k such that sigma(sigma(k) - k) = 2*k, where sigma is the sum of divisors, A000203.
6, 28, 36, 496, 8128, 33550336, 8589869056
Offset: 1
Examples
For k=36, sigma(sigma(36)-36) = sigma(91-36) = sigma(55) = 72, hence 36 is in the sequence.
Crossrefs
Programs
-
Mathematica
Select[Range[1,10000],DivisorSigma[1,DivisorSigma[1,#]-#]==2*#&] (* Julien Kluge, Sep 20 2016 *)
-
PARI
isok(n) = (sigma(sigma(n) - n) == 2*n);
Extensions
a(7) from Michel Marcus, Nov 22 2014
Comments