cp's OEIS Frontend

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.

A120147 a(n) = 23 + floor( 1 + Sum_{j=1..n-1} a(j)/2 ).

This page as a plain text file.
%I A120147 #8 May 30 2023 12:02:49
%S A120147 23,35,52,78,117,176,264,396,594,891,1336,2004,3006,4509,6764,10146,
%T A120147 15219,22828,34242,51363,77045,115567,173351,260026,390039,585059,
%U A120147 877588,1316382,1974573,2961860,4442790,6664185,9996277,14994416
%N A120147 a(n) = 23 + floor( 1 + Sum_{j=1..n-1} a(j)/2 ).
%H A120147 Harvey P. Dale, <a href="/A120147/b120147.txt">Table of n, a(n) for n = 1..1000</a>
%t A120147 nxt[{t_,a_}]:=Module[{k=Floor[(47+t)/2]},{t+k,k}]; NestList[nxt,{23,23},40][[All,2]] (* _Harvey P. Dale_, Oct 29 2020 *)
%o A120147 (SageMath)
%o A120147 @CachedFunction
%o A120147 def A120147(n): return 23 + (1 + sum(A120147(k) for k in range(1,n)))//2
%o A120147 [A120147(n) for n in range(1, 61)] # _G. C. Greubel_, May 30 2023
%Y A120147 Cf. A072493, A073941, A112088.
%K A120147 nonn
%O A120147 1,1
%A A120147 _Graeme McRae_, Jun 10 2006