OFFSET
1,1
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,1).
FORMULA
a(n) = lcm(gcd(n mod 2, n mod 3), 2).
From R. J. Mathar, Mar 06 2008: (Start)
O.g.f.: -2*x*(1+x+x^2+x^3+x^4)/((x-1)(x+1)(x^2+x+1)(x^2-x+1)).
a(n) = 2*A097325(n). (End)
PROG
(PARI) a(n)=if(n%6, 2, 0) \\ Charles R Greathouse IV, Jul 13 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
William A. Tedeschi, Feb 29 2008
STATUS
approved