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
19, 28, 42, 63, 95, 142, 213, 320, 480, 720, 1080, 1620, 2430, 3645, 5467, 8201, 12301, 18452, 27678, 41517, 62275, 93413, 140119, 210179, 315268, 472902, 709353, 1064030, 1596045, 2394067, 3591101, 5386651, 8079977, 12119965, 18179948 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
a[n_]:= a[n]= 19 +Quotient[Sum[a[k], {k, n-1}], 2];
Table[a[n], {n, 60}] (* G. C. Greubel, May 14 2023 *)
PROG
(SageMath)
@CachedFunction
def A120144(n): return 19 + sum(A120144(k) for k in range(1, n))//2
[A120144(n) for n in range(1, 61)] # G. C. Greubel, May 14 2023
CROSSREFS
Sequence in context: A257043 A369341 A368871 * A255924 A067452 A123944
KEYWORD
nonn
AUTHOR
Graeme McRae, Jun 10 2006
STATUS
approved

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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)