OFFSET
1,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,0,0,1,-1).
FORMULA
G.f.: x^2*(1+2*x+3*x^2+x^3) / ( (1+x)*(x^2+1)*(x-1)^2 ). - R. J. Mathar, Oct 25 2011
a(n) = a(n-1) + a(n-4) - a(n-5) for n>5. - Harvey P. Dale, Mar 09 2012
From Wesley Ivan Hurt, May 22 2016: (Start)
a(n) = (14n-15+i^(2n)+(3+i)*i^(-n)+(3-i)*i^n)/8 where i=sqrt(-1).
MAPLE
A047283:=n->(14*n-15+I^(2*n)+(3+I)*I^(-n)+(3-I)*I^n)/8: seq(A047283(n), n=1..100); # Wesley Ivan Hurt, May 22 2016
MATHEMATICA
Select[Range[0, 100], MemberQ[{0, 1, 3, 6}, Mod[#, 7]]&] (* or *) LinearRecurrence[{1, 0, 0, 1, -1}, {0, 1, 3, 6, 7}, 60] (* Harvey P. Dale, Mar 09 2012 *)
PROG
(Magma) [n : n in [0..150] | n mod 7 in [0, 1, 3, 6]]; // Wesley Ivan Hurt, May 22 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Wesley Ivan Hurt, May 22 2016
STATUS
approved