A019282 Let sigma_m (n) be result of applying sum-of-divisors function m times to n; call n (m,k)-perfect if sigma_m (n) = k*n; sequence gives the (2,4)-perfect numbers.
15, 1023, 29127, 355744082763
Offset: 1
Links
- Graeme L. Cohen and Herman J. J. te Riele, Iterating the sum-of-divisors function, Experimental Mathematics, 5 (1996), pp. 93-100.
Crossrefs
Programs
-
Mathematica
Select[Range[100000], DivisorSigma[1, DivisorSigma[1, #]]/# == 4 &] (* Robert Price, Apr 07 2019 *)
-
PARI
isok(n) = sigma(sigma(n))/n == 4; \\ Michel Marcus, May 12 2016
Extensions
a(4) from Jud McCranie, Feb 08 2012
Comments