cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A120147 a(n) = 23 + floor( 1 + Sum_{j=1..n-1} a(j)/2 ).

Original entry on oeis.org

23, 35, 52, 78, 117, 176, 264, 396, 594, 891, 1336, 2004, 3006, 4509, 6764, 10146, 15219, 22828, 34242, 51363, 77045, 115567, 173351, 260026, 390039, 585059, 877588, 1316382, 1974573, 2961860, 4442790, 6664185, 9996277, 14994416
Offset: 1

Views

Author

Graeme McRae, Jun 10 2006

Keywords

Crossrefs

Programs

  • Mathematica
    nxt[{t_,a_}]:=Module[{k=Floor[(47+t)/2]},{t+k,k}]; NestList[nxt,{23,23},40][[All,2]] (* Harvey P. Dale, Oct 29 2020 *)
  • SageMath
    @CachedFunction
    def A120147(n): return 23 + (1 + sum(A120147(k) for k in range(1,n)))//2
    [A120147(n) for n in range(1, 61)] # G. C. Greubel, May 30 2023