OFFSET
1,1
COMMENTS
Essentially the same as A168376.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (1,1,-1).
FORMULA
a(n) = 7*n - a(n-1) - 1, with n > 1, a(1)=3.
G.f.: x*(3+7*x-3*x^2) / ((1+x)*(x-1)^2). - R. J. Mathar, Jan 05 2011
a(1)=3, a(2)=10, a(3)=10; for n>3, a(n) = a(n-1)+a(n-2)-a(n-3). - Harvey P. Dale, Oct 24 2011
E.g.f.: (1/4)*(7 - 12*exp(x) + (5 + 14*x)*exp(2*x))*exp(-x). - G. C. Greubel, Jul 18 2016
MAPLE
MATHEMATICA
Table[5/4 + 7n/2 + 7 (-1)^n/4, {n, 60}] (* or *) LinearRecurrence[{1, 1, -1}, {3, 10, 10}, 60] (* Harvey P. Dale, Oct 24 2011 *)
CoefficientList[Series[- (- 3 - 7 x + 3 x^2)/((1 + x) (x - 1)^2), {x, 0, 70}], x] (* Vincenzo Librandi, Sep 17 2013 *)
PROG
(Magma) [5/4+7*n/2+7*(-1)^n/4: n in [1..70]]; // Vincenzo Librandi, Sep 17 2013
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Vincenzo Librandi, Nov 23 2009
EXTENSIONS
New definition by R. J. Mathar, Jan 05 2011
STATUS
approved