OFFSET
0,2
COMMENTS
Binomial transform is A103425.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,4).
FORMULA
G.f.: (1+2*x-4*x^2)/(1-4*x^2).
E.g.f.: 1 + sinh(2*x).
a(n) = 0^n+(2^n-(-2)^n)/2.
a(n) = Sum_{k=0..n} binomial(n, k)*(-1)^(k(n-k)).
MATHEMATICA
With[{nn=50}, CoefficientList[Series[1+Sinh[2x], {x, 0, nn}], x] Range[ 0, nn-1]!] (* Harvey P. Dale, Jun 29 2014 *)
CoefficientList[Series[(1 + 2 x - 4 x^2)/(1 - 4 x^2), {x, 0, 50}], x] (* Vincenzo Librandi, Jun 30 2014 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Feb 05 2005
STATUS
approved