(MAGMAMagma) I:=[0, 111, 1260, 1707, 2280, 8791, 11380]; [n le 7 select I[n] else Self(n-1) +6*Self(n-3) -6*Self(n-4) -Self(n-6) +Self(n-7): n in [1..30]]; // G. C. Greubel, Apr 21 2018
(MAGMAMagma) I:=[0, 111, 1260, 1707, 2280, 8791, 11380]; [n le 7 select I[n] else Self(n-1) +6*Self(n-3) -6*Self(n-4) -Self(n-6) +Self(n-7): n in [1..30]]; // G. C. Greubel, Apr 21 2018
_Mohamed Bouhamida (bhmd95(AT)yahoo.fr), _, Jun 03 2007
proposed
approved
editing
proposed
G. C. Greubel, <a href="/A101152/b101152.txt">Table of n, a(n) for n = 1..1000</a>
a(n) = 6*a(n-3) - a(n-6) + 1138 for n > 6; a(1)=0, a(2)=111, a(3)=1260, a(4)=1707, a(5)=2280, a(6)=8791.
G.f.: x*(111 +1149*x +447*x^2 -93*x^3 -383*x^4 -93*x^5) / ((1-x)*(1-6*x^3 +x^6)).
LinearRecurrence[{1, 0, 6, -6, 0, -1, 1}, {0, 111, 1260, 1707, 2280, 8791, 11380}, 50] (* G. C. Greubel, Apr 21 2018 *)
(PARI) x='x+O('x^30); concat([0], Vec(x*(111 +1149*x +447*x^2 -93*x^3 -383*x^4 -93*x^5)/((1-x)*(1-6*x^3 +x^6)))) \\ G. C. Greubel, Apr 21 2018
(MAGMA) I:=[0, 111, 1260, 1707, 2280, 8791, 11380]; [n le 7 select I[n] else Self(n-1) +6*Self(n-3) -6*Self(n-4) -Self(n-6) +Self(n-7): n in [1..30]]; // G. C. Greubel, Apr 21 2018
approved
editing
<a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,6,-6,0,-1,1).
<a href="/index/Rec">Index to sequences with entries for linear recurrences with constant coefficients</a>, signature (1,0,6,-6,0,-1,1).
<a href="/index/Rea#recLCCRec">Index to sequences with linear recurrences with constant coefficients</a>, signature (1,0,6,-6,0,-1,1).
Edited and two terms added by _Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), _, May 04 2009
editing
approved