OFFSET
1,2
COMMENTS
1st,3rd,5th (odd terms) increase by 2, 2nd,4th,6th,8th (even terms) decrease by 2 each time.
LINKS
FORMULA
a(n) = -a(n-1) + a(n-2) + a(n-3). - Charles R Greathouse IV, Aug 02 2013
G.f.: x*(2*x^2 + 5*x + 1)/((1-x)*(1+x)^2). a(n) = n*(-1)^n + 2 = A038608(n) + 2. - Ralf Stephan, Aug 07 2013
EXAMPLE
(1+3)=4 (4-5)=-1 (-1+7)=6 (6-9)=-3 (-3+11)=8 (8-13)=-5 (-5+15)=10.
PROG
(PARI) a(n) = n*(-1)^n + 2; \\ Michel Marcus, Feb 08 2016
CROSSREFS
KEYWORD
sign,easy
AUTHOR
D.Wilde, Aug 02 2013
STATUS
approved