A120136 a(n) = 7 + floor(Sum_{j=1..n-1} a(j) / 2).
7, 10, 15, 23, 34, 51, 77, 115, 173, 259, 389, 583, 875, 1312, 1968, 2952, 4428, 6642, 9963, 14945, 22417, 33626, 50439, 75658, 113487, 170231, 255346, 383019, 574529, 861793, 1292690, 1939035, 2908552, 4362828, 6544242, 9816363, 14724545
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
nxt[{t_,a_}] := Module[{c=7+Floor[t/2]},{t+c,c}]; NestList[nxt,{7,7},40][[All,2]] (* Harvey P. Dale, Jan 13 2017 *)
-
SageMath
@CachedFunction def A120136(n): return 7 +sum(A120136(k) for k in range(1,n))//2 [A120136(n) for n in range(1,60)] # G. C. Greubel, May 08 2023