This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A115060 #9 Jul 11 2021 09:49:01 %S A115060 1,2,3,4,5,6,7,8,9,10,11,16,13,14,15,16,17,21,19,22,21,22,23,55,25,26, %T A115060 27,28,29,259,31,32,33,34,35,55,37,38,39,50,41,259,43,50,45,46,47,76, %U A115060 49,50,51,52,53,259,55,64,57,58,59,172,61,62,63,64,65,259 %N A115060 Maximum peak of aliquot sequence starting at n. %C A115060 According to Catalan's conjecture all aliquot sequences end in a prime followed by 1, a perfect number, a friendly pair or an aliquot cycle. Some sequences seem to be open ended and keep growing forever i.e. 276. Most sequences only go down (i.e. 10 - 8 - 7 - 1), so for most cases in this sequence, a(n) = n. The first number to achieve a significantly high peak is 138 %H A115060 Jinyuan Wang, <a href="/A115060/b115060.txt">Table of n, a(n) for n = 1..275</a> %H A115060 W. Creyaufmueller, <a href="http://www.aliquot.de/aliquote.htm">Aliquot Sequences</a>. %H A115060 Paul Zimmerman, <a href="http://www.loria.fr/~zimmerma/records/aliquot.html">Aliquot Sequences</a>. %e A115060 a(24)=55 because the aliquot sequence starting at 24 is: 24 - 36 - 55 - 17 - 1 so the maximum peak of this sequence is 55. %o A115060 (Python) %o A115060 from sympy import divisor_sigma as sigma %o A115060 def aliquot(n): %o A115060 alst = []; seen = set(); i = n %o A115060 while i and i not in seen: alst.append(i); seen.add(i); i = sigma(i) - i %o A115060 return alst %o A115060 def aupton(terms): return [max(aliquot(n)) for n in range(1, terms+1)] %o A115060 print(aupton(66)) # _Michael S. Branicky_, Jul 11 2021 %Y A115060 Cf. A003023, A005114, A007906, A037020, A044050, A063769, A098007, A098008, A098009, A098010. %K A115060 nonn %O A115060 1,2 %A A115060 _Sergio Pimentel_, Mar 06 2006 %E A115060 More terms from _Jinyuan Wang_, Jul 11 2021