This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A120141 #21 May 14 2023 12:43:21 %S A120141 14,21,32,48,72,108,162,243,364,546,819,1229,1843,2765,4147,6221,9331, %T A120141 13997,20995,31493,47239,70859,106288,159432,239148,358722,538083, %U A120141 807125,1210687,1816031,2724046,4086069,6129104,9193656,13790484 %N A120141 a(n) = 14 + floor( (1 + Sum_{j=0..n-1} a(j)) / 2). %H A120141 Harvey P. Dale, <a href="/A120141/b120141.txt">Table of n, a(n) for n = 1..1000</a> %t A120141 nxt[{t_,a_}]:=Module[{a2=14+Floor[(1+t)/2]},{t+a2,a2}]; NestList[nxt,{0,14},60][[All,2]]//Rest (* _Harvey P. Dale_, Nov 28 2018 *) %o A120141 (SageMath) %o A120141 @CachedFunction %o A120141 def A120141(n): return 14 +(1 +sum(A120141(k) for k in range(1,n)))//2 %o A120141 [A120141(n) for n in range(1,60)] # _G. C. Greubel_, May 11 2023 %Y A120141 Cf. A073941, A072493, A112088, A120134 - A120140, A120142 - A120209. %K A120141 nonn %O A120141 1,1 %A A120141 _Graeme McRae_, Jun 10 2006