login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A120144 a(n) = 19 + floor( Sum_{j=1..n-1} a(j) / 2 ). 3

%I #7 May 14 2023 12:37:40

%S 19,28,42,63,95,142,213,320,480,720,1080,1620,2430,3645,5467,8201,

%T 12301,18452,27678,41517,62275,93413,140119,210179,315268,472902,

%U 709353,1064030,1596045,2394067,3591101,5386651,8079977,12119965,18179948

%N a(n) = 19 + floor( Sum_{j=1..n-1} a(j) / 2 ).

%H G. C. Greubel, <a href="/A120144/b120144.txt">Table of n, a(n) for n = 1..1000</a>

%t a[n_]:= a[n]= 19 +Quotient[Sum[a[k], {k,n-1}], 2];

%t Table[a[n], {n,60}] (* _G. C. Greubel_, May 14 2023 *)

%o (SageMath)

%o @CachedFunction

%o def A120144(n): return 19 + sum(A120144(k) for k in range(1,n))//2

%o [A120144(n) for n in range(1,61)] # _G. C. Greubel_, May 14 2023

%Y Cf. A073941, A072493, A112088, A120134 - A120143, A120145 - A120209.

%K nonn

%O 1,1

%A _Graeme McRae_, Jun 10 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)