OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (2,35).
FORMULA
a(n) = 7^n/12 - (-5)^n/12.
a(n) = Sum{k=1..n, binomial(n, 2k-1)*6^(2(k-1))}.
G.f.: 1/((1+5x)(1-7x)).
a(n+1) = Sum_{k = 0..n} A238801(n,k)*6^k. - Philippe Deléham, Mar 07 2014
MATHEMATICA
Join[{a=0, b=1}, Table[c=2*b+35*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Feb 01 2011 *)
CoefficientList[Series[1 / ((1 + 5 x) (1 - 7 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Aug 05 2013 *)
LinearRecurrence[{2, 35}, {0, 1}, 30] (* Harvey P. Dale, Aug 24 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Feb 24 2003
STATUS
approved