login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A069143
a(1) = a(2) = 1; a(n) = sigma(a(n-1)+a(n-2)).
0
1, 1, 3, 7, 18, 31, 57, 180, 320, 1092, 2478, 10368, 25704, 100800, 393120, 1965600, 10326624, 39657600, 131580288, 511223790, 1469266560, 4911616440, 22120488000, 95841111600, 460020244320, 2163425531904, 9805180170240
OFFSET
1,3
MATHEMATICA
a[1] = a[2] = 1; a[n_] := a[n] = DivisorSigma[1, a[n - 1] + a[n - 2]]; Table[a[n], {n, 27}]
RecurrenceTable[{a[1]==a[2]==1, a[n]==DivisorSigma[1, a[n-1]+a[n-2]]}, a, {n, 30}] (* Harvey P. Dale, Feb 15 2015 *)
CROSSREFS
Sequence in context: A331713 A348391 A327321 * A097007 A308445 A328653
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Apr 08 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Apr 11 2002
STATUS
approved