A200758 Superimperfect numbers.
2, 4, 8, 128, 32768, 2147483648
Offset: 1
Links
- Laszlo Toth, A survey of the alternating sum-of-divisors function, arXiv:1111.4842 [math.NT], 2011-2014.
- Laszlo Toth, The alternating sum-of-divisors function, 9th Joint Conf. on Math. and Comp. Sci., February 9-12, 2012, Siofok, Hungary.
Programs
-
PARI
beta(n)=sumdiv(n,d,(-1)^bigomega(n/d)*d) for(n=1,1e8,if(2*beta(beta(n))==n,print1(n", "))) \\ Charles R Greathouse IV, Nov 22 2011
-
PARI
ak(p,e)=my(s=1); for(i=1,e, s=s*p + (-1)^i); s beta(n)=my(f=factor(n)); prod(i=1,#f~, ak(f[i,1],f[i,2])) is(n)=my(b=beta(n)); 2*b-2 >= n && 2*beta(b)==n \\ Charles R Greathouse IV, Dec 27 2016
Comments