OFFSET
0,2
COMMENTS
a(n)=2^(24)=16777216 for n>=24. We observe that this sequence is the transform of A171443 by the iterated T^(16) of T such that: T(u_0,u_1,u_2,u_3,u_4,u_5,...)=(u_0,u_0+u_1,u_1+u_2,u_2+u_3,u_3+u_4,...).
LINKS
Richard Choulet, Une nouvelle formule de combinatoire?, Mathématique et Pédagogie, 157 (2006), p. 53-60. In French.
Index entries for linear recurrences with constant coefficients, signature (1).
FORMULA
With m=25, a(n) = Sum_{k=0..floor(n/2)} binomial(m,n-2*k).
EXAMPLE
a(3) = C(25,3)+C(25,3-2) = 2325.
MAPLE
m:=25:for n from 0 to 40 do a(n):=sum('binomial(m, n-2*k)', k=0..floor(n/2)): od : seq(a(n), n=0..40);
MATHEMATICA
CoefficientList[Series[(1+x)^24/(1-x), {x, 0, 30}], x] (* Harvey P. Dale, Jun 11 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Richard Choulet, Dec 09 2009
STATUS
approved