OFFSET
0,5
COMMENTS
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,0,7,0,0,8).
FORMULA
a(n) = Sum_{k=0..n} if (mod(n*k, 3)=1, 1, 0)*C(n, k).
a(n) = (2/9)*(1-cos(2*Pi*n/3))*(2^n-(-1)^n).
From Colin Barker, Nov 02 2015: (Start)
a(n) = 7*a(n-3)+8*a(n-6) for n>5.
G.f.: -x*(4*x^4-2*x^3+x+1) / ((x+1)*(2*x-1)*(x^2-x+1)*(4*x^2+2*x+1)).
(End)
PROG
(PARI) concat(0, Vec(-x*(4*x^4-2*x^3+x+1)/((x+1)*(2*x-1)*(x^2-x+1)*(4*x^2+2*x+1)) + O(x^100))) \\ Colin Barker, Nov 02 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Sep 08 2003
STATUS
approved
