login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A192293 Let sigma*_m (n) be the result of applying the sum of anti-divisors m times to n; call n (m,k)-anti-perfect if sigma*_m (n) = k*n; this sequence gives the (2,3)-anti-perfect numbers. 6

%I #27 May 20 2021 18:30:12

%S 32,98,2524,199282,1336968

%N Let sigma*_m (n) be the result of applying the sum of anti-divisors m times to n; call n (m,k)-anti-perfect if sigma*_m (n) = k*n; this sequence gives the (2,3)-anti-perfect numbers.

%C Like A019281 but using anti-divisors.

%C a(6) > 2*10^7. - _Chai Wah Wu_, Dec 02 2014

%e sigma*(32)= 3+5+7+9+13+21=58; sigma*(58)= 3+4+5+9+13+23+39=96 and 3*32=96.

%e sigma*(98)= 3+4+5+13+15+28+39+65=172; sigma*(172)= 3+5+7+8+15+23+49+69+115=294 and 3*98=294.

%e sigma*(2524)= 3+7+8+9+11+17+27+33+49+51+99+103+153+187+297+459+561+721+1683=4478; sigma*(4478)= 3+4+5+9+13+15+45+53+169+199+597+689+995+1791+2985=7572 and 3*2524=7572.

%p with(numtheory): P:= proc(n) local i,j,k,s,s1; for i from 3 to n do

%p k:=0; j:=i; while j mod 2 <> 1 do k:=k+1; j:=j/2; od; s:=sigma(2*i+1)+sigma(2*i-1)+sigma(i/2^k)*2^(k+1)-6*i-2;

%p k:=0; j:=s; while j mod 2 <> 1 do k:=k+1; j:=j/2; od; s1:=sigma(2*s+1)+sigma(2*s-1)+sigma(s/2^k)*2^(k+1)-6*s-2;

%p if s1/i=3 then print(i); fi; od; end: P(10^9);

%o (Python)

%o from sympy import divisors

%o def antidivisors(n):

%o return [2*d for d in divisors(n) if n > 2*d and n % (2*d)] + \

%o [d for d in divisors(2*n-1) if n > d >=2 and n % d] + \

%o [d for d in divisors(2*n+1) if n > d >=2 and n % d]

%o A192293_list = []

%o for n in range(1,10**4):

%o if 3*n == sum(antidivisors(sum(antidivisors(n)))):

%o A192293_list.append(n) # _Chai Wah Wu_, Dec 02 2014

%Y Cf. A019281, A066272, A192290, A192291, A192292.

%K nonn,more

%O 1,1

%A _Paolo P. Lava_, Jun 29 2011

%E a(4)-a(5) from _Chai Wah Wu_, Dec 01 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)