login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A192292
Pairs of numbers a, b for which sigma*(a)=b and sigma(b)-b-1=a, where sigma*(n) is the sum of the anti-divisors of n.
3
7, 10, 14, 16, 45, 86, 2379, 2324, 4213, 5866, 27323, 33604, 1303227, 1737628, 3722831, 4208308, 15752651, 18706108, 6094085371, 8114352508, 30090695519, 40119052564
OFFSET
1,1
COMMENTS
Betrothed numbers mixed with anti-divisors.
a(23) > 10^11. - Hiroaki Yamanouchi, Sep 28 2015
EXAMPLE
sigma*(45)= 2+6+7+10+13+18+30 = 86.
sigma(86)-86-1 = 2+43 = 45.
sigma*(2379) = 2+6+26+67+71+78+122+366+1586 = 2374.
sigma(2324)-2324-1 = 2+4+7+14+28+83+166+332+581+1162 = 2379.
MAPLE
with(numtheory); P:= proc(n) local b, c, i, j, k;
for i from 3 to n do k:=0; j:=i;
while j mod 2 <> 1 do k:=k+1; j:=j/2; od;
b:=sigma(2*i+1)+sigma(2*i-1)+sigma(i/2^k)*2^(k+1)-6*i-2;
if sigma(b)-b-1=i then print(i); print(b); fi;
od; end: P(10^9);
CROSSREFS
KEYWORD
nonn,more,tabf
AUTHOR
Paolo P. Lava, Jun 29 2011
EXTENSIONS
a(13)-a(14) from Paolo P. Lava, Dec 03 2014
a(7)-a(8) swapped and a(15)-a(22) added by Hiroaki Yamanouchi, Sep 28 2015
STATUS
approved