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!)
A000458 a(0) = a(1) = 1; thereafter a(n) = sigma(a(n-1)) + sigma(a(n-2)). 1
1, 1, 2, 4, 10, 25, 49, 88, 237, 500, 1412, 3570, 12846, 36072, 126504, 493920, 2358720, 12292224, 49984224, 171237888, 642804078, 1980490350, 6380883000, 27032104440, 117961599600, 555861355920, 2623445776224 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MAPLE
A000458 := proc(n) options remember; if n <= 1 then RETURN(1) else sigma(A000458(n-1))+sigma(A000458(n-2)); fi; end;
MATHEMATICA
a[0] = a[1] = 1; a[n_] := a[n] = DivisorSigma[1, a[n-1]] + DivisorSigma[1, a[n-2]]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Feb 08 2016 *)
nxt[{a_, b_}]:={b, DivisorSigma[1, a]+DivisorSigma[1, b]}; NestList[nxt, {1, 1}, 30][[All, 1]] (* Harvey P. Dale, Dec 09 2022 *)
CROSSREFS
Sequence in context: A148090 A148091 A123420 * A089928 A173610 A036887
KEYWORD
nonn
AUTHOR
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 25 11:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)