A019283 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,6)-perfect numbers.
42, 84, 160, 336, 1344, 86016, 550095, 1376256, 5505024, 22548578304
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.
- Index entries for sequences where any odd perfect numbers must occur
Crossrefs
Programs
-
Mathematica
Do[If[DivisorSigma[1, DivisorSigma[1, n]]==6n, Print[n]], {n, 6000000}] (* Farideh Firoozbakht, Dec 05 2005 *)
-
PARI
isok(n) = sigma(sigma(n))/n == 6; \\ Michel Marcus, May 12 2016
Extensions
a(10) by Jud McCranie, Feb 08 2012
Comments