The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A120145 a(n) = 20 + floor( (1 + Sum_{j=1..n-1} a(j)) / 2 ). 2
20, 30, 45, 68, 102, 153, 229, 344, 516, 774, 1161, 1741, 2612, 3918, 5877, 8815, 13223, 19834, 29751, 44627, 66940, 100410, 150615, 225923, 338884, 508326, 762489, 1143734, 1715601, 2573401, 3860102, 5790153, 8685229, 13027844 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
a[n_]:= a[n]= 20 +Quotient[1 +Sum[a[k], {k, n-1}], 2];
Table[a[n], {n, 60}] (* G. C. Greubel, May 14 2023 *)
PROG
(SageMath)
@CachedFunction
def A120145(n): return 20 + (1+sum(A120145(k) for k in range(1, n)))//2
[A120145(n) for n in range(1, 61)] # G. C. Greubel, May 14 2023
CROSSREFS
Sequence in context: A108030 A095787 A198471 * A104048 A078499 A066027
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 May 13 18:22 EDT 2024. Contains 372522 sequences. (Running on oeis4.)