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.

A179018 Partial sums of ceiling(Fibonacci(n)/2).

Original entry on oeis.org

0, 1, 2, 3, 5, 8, 12, 19, 30, 47, 75, 120, 192, 309, 498, 803, 1297, 2096, 3388, 5479, 8862, 14335, 23191, 37520, 60704, 98217, 158914, 257123, 416029, 673144, 1089164
Offset: 0

Views

Author

Mircea Merca, Jan 04 2011

Keywords

Comments

Partial sums of A173173.

Examples

			a(4) = 0 + 1 + 1 + 1 + 2 = 5.
		

Crossrefs

Cf. A173173.

Programs

  • Maple
    seq(ceil(Fibonacci(n+2)/2+n/3-1/2),n=0..30)
  • PARI
    a(n)=(3*fibonacci(n+2)+2*n-1)\6 \\ Charles R Greathouse IV, Nov 02 2015

Formula

a(n) = round(Fibonacci(n+2)/2 + (n-1)/3).
a(n) = round(Fibonacci(n+2)/2 + n/3 - 1/2).
a(n) = floor(Fibonacci(n+2)/2 + n/3 - 1/6).
a(n) = ceiling(Fibonacci(n+2)/2 + n/3 - 1/2).
a(n) = a(n-3) + Fibonacci(n)+1, n > 2.
a(n) = 2*a(n-1) - 2*a(n-4) + a(n-6), n > 5.
G.f.: x*(x^3+x^2-1) / ( (x^2+x+1)*(x^2+x-1)*(x-1)^2 ).