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!)
A120141 a(n) = 14 + floor( (1 + Sum_{j=0..n-1} a(j)) / 2). 3
14, 21, 32, 48, 72, 108, 162, 243, 364, 546, 819, 1229, 1843, 2765, 4147, 6221, 9331, 13997, 20995, 31493, 47239, 70859, 106288, 159432, 239148, 358722, 538083, 807125, 1210687, 1816031, 2724046, 4086069, 6129104, 9193656, 13790484 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
nxt[{t_, a_}]:=Module[{a2=14+Floor[(1+t)/2]}, {t+a2, a2}]; NestList[nxt, {0, 14}, 60][[All, 2]]//Rest (* Harvey P. Dale, Nov 28 2018 *)
PROG
(SageMath)
@CachedFunction
def A120141(n): return 14 +(1 +sum(A120141(k) for k in range(1, n)))//2
[A120141(n) for n in range(1, 60)] # G. C. Greubel, May 11 2023
CROSSREFS
Sequence in context: A335774 A006625 A114382 * A240593 A121495 A263990
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 March 28 22:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)