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.

A173125 a(n) = Sum_{k == floor(n/2) (mod 5)} C(n,k).

Original entry on oeis.org

1, 1, 2, 3, 6, 10, 20, 35, 70, 127, 254, 474, 948, 1807, 3614, 6995, 13990, 27370, 54740, 107883, 215766, 427351, 854702, 1698458, 3396916, 6765175, 13530350, 26985675, 53971350, 107746282, 215492564, 430470899, 860941798, 1720537327, 3441074654
Offset: 0

Views

Author

Henry Bottomley, Feb 10 2010

Keywords

Comments

Greater of number of closed walks of length n from a node on a pentagon and number of walks of length n between two adjacent nodes on a pentagon.

Examples

			For n=15, k=7 mod 5 gives k=2, 7 or 12, and C(15,2)+C(15,7)+C(15,12) = 105+6435+455, so a(15)=6995.
		

Programs

  • PARI
    Vec(-(x-1)*(x^3+3*x^2-1)/((2*x-1)*(x^2-x-1)*(x^2+x-1)) + O(x^100)) \\ Colin Barker, Sep 14 2014

Formula

a(n) = A000045(n+1)+A173126(n). a(2n) = A054877(2n); a(2n+1) = A052964(2n).
a(n) = 2*a(n-1)+3*a(n-2)-6*a(n-3)-a(n-4)+2*a(n-5). - Colin Barker, Sep 14 2014
G.f.: -(x-1)*(x^3+3*x^2-1) / ((2*x-1)*(x^2-x-1)*(x^2+x-1)). - Colin Barker, Sep 14 2014