OFFSET
0,1
COMMENTS
Previous name: Transform of A000027 by the T_{1,2} transformation (see link).
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Richard Choulet, Curtz-like transformation.
Index entries for linear recurrences with constant coefficients, signature (3,-2,1).
FORMULA
G.f.: f(z) = 3 +8*z + ... = (3 -z +2*z^2)/(1 -3*z +2*z^2 -z^3).
a(n+3) = 3*a(n+2) -2*a(n+1) +a(n) (n>=0). - Richard Choulet, Apr 07 2009
MATHEMATICA
LinearRecurrence[{3, -2, 1}, {3, 8, 20}, 40] (* G. C. Greubel, Apr 19 2021 *)
CoefficientList[Series[(3-x+2x^2)/(1-3x+2x^2-x^3), {x, 0, 40}], x] (* Harvey P. Dale, Oct 15 2021 *)
PROG
(Magma) [n le 3 select 2^(n-1)*(n+2) else 3*Self(n-1) - 2*Self(n-2) +Self(n-3): n in [1..41]]; // G. C. Greubel, Apr 19 2021
(Sage)
@CachedFunction
def a(n): return 2^n*(n+3) if n<3 else sum((-1)^j*(3-j)*a(n-j-1) for j in (0..2))
[a(n) for n in (0..40)] # G. C. Greubel, Apr 19 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Richard Choulet, Mar 22 2008
STATUS
approved