[go: up one dir, main page]

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”).

Larger member of a nonexponential amicable pair: numbers (k, m) such that nesigma(k) = m and nesigma(m) = k, where nesigma(k) is the sum of the nonexponential divisors of k (A160135).
1

%I #6 Oct 25 2021 11:11:47

%S 204,19332,168730,1099390,1292570,1598470,2062570,2429030,3077354,

%T 3903012,4488910,6135962,5504110,5812130,7158710,8221598,9627915,

%U 10893230,10043690,11049730,10273670,18087818,19150222,17578785,23030090,32174506,35997346,40117714,39944086

%N Larger member of a nonexponential amicable pair: numbers (k, m) such that nesigma(k) = m and nesigma(m) = k, where nesigma(k) is the sum of the nonexponential divisors of k (A160135).

%C The terms are ordered according to their smaller counterparts (A348602).

%e 204 is a term since A160135(204) = 198 and A160135(198) = 204.

%t esigma[n_] := Times @@ (Sum[First[#]^d, {d, Divisors[Last[#]]}] &) /@ FactorInteger[n]; s[n_] := DivisorSigma[1, n] - esigma[n]; seq = {}; Do[m = s[n]; If[m > n && s[m] == n, AppendTo[seq, m]], {n, 1, 1.7*10^6}]; seq

%Y Cf. A160135, A348601, A348602.

%Y Similar sequences: A002046, A002953, A126166, A126170, A259039, A292981, A322542, A324709, A348344.

%K nonn

%O 1,1

%A _Amiram Eldar_, Oct 25 2021