OFFSET
0,1
COMMENTS
a(n) = A125199(n+1,3) for n>1. - Reinhard Zumkeller, Nov 24 2006
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 22*n + 5 - a(n-1), with n>0, a(0)=8. - Vincenzo Librandi, Dec 24 2010
From Colin Barker, Oct 05 2014: (Start)
a(n) = 2*a(n-1) - a(n-2).
G.f.: (8 + 3*x)/(1-x)^2. (End)
E.g.f.: (8 + 11*x)*exp(x). - G. C. Greubel, Sep 21 2019
MAPLE
MATHEMATICA
Range[8, 1000, 11] (* Vladimir Joseph Stephan Orlovsky, May 29 2011 *)
LinearRecurrence[{2, -1}, {8, 19}, 60] (* Harvey P. Dale, May 10 2021 *)
PROG
(Magma) [11*n+8 : n in [0..60]]; // Wesley Ivan Hurt, May 21 2014
(PARI) Vec((8+3*x)/(1-x)^2 + O(x^60)) \\ Colin Barker, Oct 05 2014
(GAP) List([0..60], n-> 11*n+8); # G. C. Greubel, Sep 21 2019
(Sage) [11*n+8 for n in (0..60)] # G. C. Greubel, Sep 22 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 11 1996
STATUS
approved