The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A285892 The greater of the lexicographically least pair (x, y) such that 0 < x < y and sigma(x) = sigma(y) = x + y - n. 3
284, 11697, 38, 369, 26, 11, 286, 3135, 58, 17, 25, 39, 428, 23, 23, 69, 94, 8225, 244, 41, 31, 87, 478, 59, 82, 41, 118, 267, 142, 71, 4064, 95, 47, 53, 47, 69, 142, 59, 478, 89, 406, 119, 574, 83, 166, 71, 718, 123, 1292, 205, 71, 97, 418, 143, 71, 295, 79, 89 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
In the first 1000 terms the most repeated number is 719 with 14 occurrences.
What can we say about records in this sequence? - David A. Corneth, May 10 2017
LINKS
EXAMPLE
a(3) = 369: sigma(369) = sigma(180) = 369 + 180 - 3 = 546;
a(4) = 26: sigma(26) = sigma(20) = 26 + 20 - 4 = 42;
a(5) = 11: sigma(11) = sigma(6) = 11 + 6 - 5 = 12.
From David A. Corneth, May 10 2017 (Start):
a(35) = 69: sigma(62) = sigma(69) = 62 + 69 - 35 = 96.
After creating a list of pairs (sigma(i), i) and sorting them with respect to sigma(i), we get {[1, 1], [3, 2], [4, 3], [6, 5], [7, 4], [8, 7], [12, 6], [12, 11], [13, 9], ...}. Skimming through this list we see that the first pair of numbers having the same value for sigma are 6 and 11. As sigma(y) = x + y - n, we have n = x + y - sigma(y), giving n = 6 + 11 - 12 = 5. We have found no value for a(5) yet, therefore, a(5) = 11. (End)
MAPLE
with(numtheory): P:=proc(q) local a, b, k, n; for n from 0 to q do for k from 1 to q do
a:=sigma(k)-k+n; b:=sigma(a)-a+n; if a>0 and b=k and a<>b then print(a); break;
fi; od; od; end: P(10^9);
MATHEMATICA
Do[m = 1; While[Set[k, Module[{k = n + Boole[n == 0]}, While[! Xor[DivisorSigma[1, m] == DivisorSigma[1, k] == m + k - n, k >= m], k++]; k]] >= m, m++]; Print@ m, {n, 0, 50}] (* Michael De Vlieger, Apr 28 2017 (note: due to size of a(1) program takes a few minutes to run but posts results as soon as they are calculated.) *)
PROG
(PARI) upto(n, {u=50000}) = {my(res = vector(n, i, -1), v=vecsort(vector(u, i, [sigma(i), i])), t=1, u=2); while(u<=#v, if(v[t][1]==v[u][1], i=v[t][2] + v[u][2] - v[t][1]; if(1<=i && i<=n && res[i] == -1, res[i] = v[u][2]); u++, t++; u=t+1)); concat(284, res)} \\ (u is an estimate of the maximum of terms a(n) up to n) David A. Corneth, May 10 2017
CROSSREFS
Sequence in context: A218400 A196893 A280808 * A049024 A277771 A093228
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Apr 28 2017
EXTENSIONS
a(35) corrected by David A. Corneth, May 10 2017
STATUS
approved

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 May 14 09:52 EDT 2024. Contains 372532 sequences. (Running on oeis4.)