OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (4,-4,-2,5,-2).
FORMULA
a(n) = 2^(n+2)/3+(n^2+n-1)/2+(-1)^n/6.
G.f.: (1-x-2*x^3)/((1+x)*(1-2*x)*(1-x)^3). - Bruno Berselli, Aug 11 2013
MAPLE
A081661:=n->2^(n+2)/3 + (n^2+n-1)/2 + (-1)^n/6; seq(A081661(n), n=0..30); # Wesley Ivan Hurt, May 07 2014
MATHEMATICA
Table[2^(n + 2) / 3 + (n^2 + n - 1) / 2 + (-1)^n / 6, {n, 0, 40}] (* Vincenzo Librandi, Aug 10 2013 *)
LinearRecurrence[{4, -4, -2, 5, -2}, {1, 3, 8, 16, 31}, 40] (* Harvey P. Dale, Jan 11 2016 *)
PROG
(Magma) [2^(n+2)/3+(n^2+n-1)/2+(-1)^n/6: n in [0..40]]; // Vincenzo Librandi, Aug 10 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Mar 26 2003
STATUS
approved