OFFSET
1,1
LINKS
Index entries for linear recurrences with constant coefficients, signature (7,-14,8).
FORMULA
a(n) = 2^(2*n - 1) + 2*a(n - 1) + 1.
From R. J. Mathar, Jun 13 2008: (Start)
O.g.f.: x*(2 - 7*x + 2*x^2)/((1-x)*(1-4*x)*(1-2*x)).
a(n) = A093069(n-2), n>1. (End)
MATHEMATICA
f[n_Integer?Positive] := f[n] = 2^(2*n - 1) + 2*f[n - 1] + 1; f[0] = 2; Table[f[n], {n, 0, 30}]
CoefficientList[Series[x*(2-7x+2x^2)/((1-x)(1-4x)(1-2x)), {x, 0, 30}], x] (* Harvey P. Dale, Sep 07 2015 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Aug 09 2007
EXTENSIONS
New name from Joerg Arndt, Feb 08 2015
STATUS
approved