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

A079719
a(n) = n + floor[sum_k{k<n}a(k)/2] with a(0)=0.
2
0, 1, 2, 4, 7, 12, 19, 29, 45, 68, 103, 156, 235, 353, 531, 797, 1197, 1796, 2695, 4044, 6067, 9101, 13653, 20480, 30721, 46083, 69125, 103689, 155534, 233302, 349954, 524932, 787399, 1181100, 1771651, 2657477, 3986217, 5979326, 8968990, 13453486
OFFSET
0,3
LINKS
FORMULA
a(n)=A073941(n+4)-2 (and appears to be A005428(n+1)) =round[1.82505431574536323...*1.5^n - 2]
EXAMPLE
a(4) = 4+floor[(0+1+2+4)/2] = 4+floor[7/2] = 4+3 = 7
MATHEMATICA
nxt[{n_, t_, a_}]:=Module[{c=n+1+Floor[t/2]}, {n+1, t+c, c}]; NestList[nxt, {0, 0, 0}, 40][[All, 3]] (* Harvey P. Dale, Aug 01 2021 *)
CROSSREFS
Sequence in context: A035297 A272465 A153252 * A300829 A036439 A175965
KEYWORD
nonn
AUTHOR
Henry Bottomley, Feb 17 2003
STATUS
approved