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”).

A320357
a(0)=1; a(1)=1; for n >= 2, a(n) = a(n-1) + a(n-A000005(n)).
2
1, 1, 2, 3, 4, 7, 9, 16, 20, 29, 38, 67, 76, 143, 181, 248, 315, 563, 639, 1202, 1383, 1946, 2585, 4531, 4846, 7431, 10016, 14547, 17132, 31679, 34264, 65943, 75959, 107638, 141902, 207845, 222392, 430237, 572139, 779984, 855943, 1635927, 1777829, 3413756, 3985895, 4765879
OFFSET
0,3
LINKS
Vaclav Kotesovec, Graph a(n+1)/a(n)
FORMULA
1 <= a(n+1)/a(n) <= 2. - Vaclav Kotesovec, Oct 14 2018
By empirical observation a(n) ~ 3.179662855437*exp(0.3175*n). - Ctibor O. Zizka, Oct 15 2018
EXAMPLE
a(4) = a(3)+a(1) = a(2)+a(1)+a(1) = a(1)+a(0)+a(1)+a(1) = 4.
MATHEMATICA
a[n_] := a[n] = If[n < 2, 1, a[n-1] + a[n - DivisorSigma[0, n]]]; Table[a[n], {n, 0, 50}] (* Vaclav Kotesovec, Oct 14 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ctibor O. Zizka, Oct 11 2018
STATUS
approved