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!)
A044050 a(n) = "length" of the aliquot sequence for n. 7

%I #23 Jan 03 2015 16:27:43

%S 1,2,2,3,2,1,2,3,4,4,2,7,2,5,5,6,2,4,2,7,3,6,2,5,1,7,3,1,2,15,2,3,6,8,

%T 3,4,2,7,3,4,2,14,2,5,7,8,2,6,4,3,4,9,2,13,3,5,3,4,2,11,2,9,3,4,3,12,

%U 2,5,4,6,2,9,2,5,5,5,3,11,2,7,5,6,2,6,3,9,7,7,2,10,4,6,4,4,2,9,2,3,4,5,2,18

%N a(n) = "length" of the aliquot sequence for n.

%C The aliquot sequence for n is the trajectory of n under repeated application of the map A001065 = x -> sigma(x) - x.

%C The trajectory will either have a transient part followed by a cyclic part, or have an infinite transient part and never cycle.

%C Sequence gives (length of transient part of trajectory) + (length of cycle if the trajectory did not reach 0). In other words, here we consider that the trajectory ends if we reach 1.

%C Given that A001065(n) is the sum of the divisors of n which are less than n, we have that the aliquot length A(n) = r-1 where r is the smallest integer such that A001065^r(n) = A001065^s(n) for some s<r. If this never happens (i.e., if r is infinite) then we set a(n) = 0. [Edited by _M. F. Hasler_, Nov 16 2013]

%C In the interval [1,1000] it is not known if the aliquot length is 0 for the numbers 276, 552, 564, 660 and 966.

%C The function sigma = A000203 (and thus A001065 = sigma - id) is defined only on the positive integers and not for 0, so the trajectory ends when 0 is reached. - _M. F. Hasler_, Nov 16 2013

%H T. D. Noe, <a href="/A044050/b044050.txt">Table of n, a(n) for n=1..275</a>

%H Wolfgang Creyaufmüller, <a href="http://www.aliquot.de/aliquote.htm">Prime Families</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/AliquotSequence.html">Aliquot Sequence</a>

%H P. Zimmermann, <a href="http://www.loria.fr/~zimmerma/records/aliquot.html">Aliquot Sequences</a>

%e a(12) = 7:

%e 12 is divisible by 1,2,3,4 and 6 so sigma(12)=16;

%e 16 is divisible by 1,2,4 and 8 so sigma(16)=15;

%e 15 is divisible by 1,3 and 5 so sigma(15)=9;

%e 9 is divisible by 1 and 3 so sigma(9)=4;

%e 4 is divisible by 1 and 2 so sigma(4)=3;

%e 3 is divisible only by 1 so sigma(3)=1;

%e 1 is not divisible by anything less than 1 so sigma(1)=0.

%e The aliquot sequence is therefore 16, 15, 9, 4, 3, 1, 0 which is 7 elements long. Therefore a(12) = 7.

%t f[n_]:=Plus@@Divisors[n]-n;lst2={};Do[lst={};a=k;Do[b=a;a=f[a];AppendTo[lst,a];If[a==0||a==b,Break[]],{n,7!}];AppendTo[lst2,Length[lst]],{k,5!}];lst2 (* _Vladimir Joseph Stephan Orlovsky_, Apr 24 2010 *)

%Y See A098007, A003023 for other versions. See A008886 for the aliquot sequence of 42.

%K nonn,nice

%O 1,2

%A Aza Raskin (aza(AT)uchicago.edu), Jun 25 2003

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 April 16 17:08 EDT 2024. Contains 371749 sequences. (Running on oeis4.)