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!)
A120136 a(n) = 7 + floor(Sum_{j=1..n-1} a(j) / 2). 3
7, 10, 15, 23, 34, 51, 77, 115, 173, 259, 389, 583, 875, 1312, 1968, 2952, 4428, 6642, 9963, 14945, 22417, 33626, 50439, 75658, 113487, 170231, 255346, 383019, 574529, 861793, 1292690, 1939035, 2908552, 4362828, 6544242, 9816363, 14724545 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
nxt[{t_, a_}] := Module[{c=7+Floor[t/2]}, {t+c, c}];
NestList[nxt, {7, 7}, 40][[All, 2]] (* Harvey P. Dale, Jan 13 2017 *)
PROG
(SageMath)
@CachedFunction
def A120136(n): return 7 +sum(A120136(k) for k in range(1, n))//2
[A120136(n) for n in range(1, 60)] # G. C. Greubel, May 08 2023
CROSSREFS
Sequence in context: A030764 A155716 A025002 * A020743 A088350 A085382
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 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)