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.

A171418 Expansion of (1+x)^4/(1-x).

Original entry on oeis.org

1, 5, 11, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16
Offset: 0

Views

Author

Richard Choulet, Dec 08 2009

Keywords

Comments

For n>=4 a(n)=2^4=16. This sequence is the transform of A115291 by the following transform T: T(u_0,u_1,u_2,u_3,u_4,...)=(u_0, u_0+u_1, u_1+u_2,u_2+u_3, ...); we observe that T(A040000)=A113311 and also T(A113311)=A115291.
Also continued fraction expansion of (55305+sqrt(65))/46231. - Bruno Berselli, Sep 23 2011

Examples

			a(3) = C(5,3-0)+C(5,3-2) = 10+5 = 15.
		

Crossrefs

Programs

  • Maple
    m:=5:for n from 0 to m+1 do a(n):=sum('binomial(m,n-2*k)',k=0..floor(n/2)): od : seq(a(n),n=0..m+1);

Formula

a(n) = Sum_{k=0..floor(n/2)} binomial(5,n-2*k).

Extensions

Definition rewritten by Bruno Berselli, Sep 23 2011