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!)
A247141 Record values obtained in the iterative process related to the abundancy function sigma(n)/n described in comments. 0
1, 15, 448, 1023, 2160, 4218, 4256, 22528, 65535, 73216, 602547, 1048575, 1432640, 4194303, 8567136, 19299763, 25165821, 34713728, 46467543, 78913536, 89522176, 115343360, 155493536, 158414464, 268435455 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Start with n=1, sigma(1)/1 is 1/1; the set of distinct values is just 1, so the first term of sequence is 1.
Start with n=2, sigma(2)/2 is 3/2; the set of distinct values is {2, 3}. A new value has appeared: 3. Repeat the process. sigma(3)/3 is 4/3; the set of distinct values is now {2, 3, 4}. A new value has appeared: 4. Repeat the process until no new value appears. The resulting final array is {1, 2, 3, 4, 5, 6, 7, 8, 15}. The maximum value of this array is 15, our second value in sequence.
Then from n=3 to 8, the resulting array is the same; and from n=9 to 15 the resulting arrays albeit different still have a maximum value 15.
The next array for which a maximum occurs is obtained when starting with n=16: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 21, 24, 26, 27, 31, 32, 35, 40, 48, 49, 52, 56, 57, 63, 64, 65, 70, 72, 80, 84, 85, 93, 104, 105, 108, 127, 128, 144, 255, 403, 448.
The indices at which these maxima occur are: 1, 2, 16, 81, 343, 490, 935, 1029, 5061, 8661, 18049, 39981, ...
LINKS
PROG
(PARI) rab(ns) = {vnew = []; vold = [ns]; vtot = [ns]; until (! #vnew, vnew = []; for (i=1, #vold, vi = vold[i]; ab = sigma(vi)/vi; if (! vecsearch(vtot, num=numerator(ab)), vtot = vecsort(concat(vtot, num)); vnew = vecsort(concat(vnew, num))); if (! vecsearch(vtot, den=denominator(ab)), vtot = vecsort(concat(vtot, den)); vnew = vecsort(concat(vnew, den))); ); vold = vnew; ); return(vtot); }
lista(nn) = {m = 0; for (n=1, nn, if ((mm = vecmax(rab(n))) > m, m = mm; print1(m, ", ")); ); }
CROSSREFS
Cf. A000203 (sigma(n)), A017665 (numerator of sigma(n)/n), A017666 (denominator).
Sequence in context: A262077 A225492 A256194 * A068203 A267643 A267666
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Nov 20 2014
EXTENSIONS
More terms from Amiram Eldar, Mar 21 2019
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 4 15:13 EDT 2024. Contains 372254 sequences. (Running on oeis4.)