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!)
A008885 Aliquot sequence starting at 30. 17
30, 42, 54, 66, 78, 90, 144, 259, 45, 33, 15, 9, 4, 3, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The sum-of-divisor function A000203 and thus aliquot parts A001065 are defined only for positive integers, so the trajectory ends when 0 is reached, here at index 15. - M. F. Hasler, Feb 24 2018
REFERENCES
Richard K. Guy, Unsolved Problems in Number Theory, B6.
LINKS
Christophe CLAVIER, Aliquot Sequences
R. J. Mathar, Illustration of Aliquot Sequence Mergers (2014) Fig 1 (prime family 3)
FORMULA
a(n+1) = A001065(a(n)). - R. J. Mathar, Oct 11 2017
EXAMPLE
a(0) = 30.
30 has eight divisors, 1, 2, 3, 5, 6, 10, 15, 30, which add up to 72, and 72 - 30 = 42, so a(1) = 42.
MAPLE
f := proc(n) option remember; if n = 0 then 30; else sigma(f(n-1))-f(n-1); fi; end:
MATHEMATICA
NestList[If[# > 0, DivisorSigma[1, #] - #, 0] &, 30, 80] (* Harvey P. Dale, Jun 12 2012 *)
PROG
(PARI) a(n, a=30)=for(i=1, n, a=sigma(a)-a); a \\ M. F. Hasler, Feb 24 2018
CROSSREFS
Sequence in context: A110849 A074696 A127663 * A367449 A097036 A090790
KEYWORD
nonn,fini,full
AUTHOR
EXTENSIONS
Edited by M. F. Hasler, Feb 24 2018
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)