OFFSET
0,2
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 326
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 14n = 2*a(n-1) - a(n-2). G.f.: 14x/(x-1)^2. - R. J. Mathar, Jun 23 2009
MATHEMATICA
Range[0, 1000, 14] (* Vladimir Joseph Stephan Orlovsky, May 31 2011 *)
CoefficientList[Series[14 x / (x - 1)^2, {x, 0, 60}], x] (* Vincenzo Librandi, Jun 10 2013 *)
PROG
(PARI) a(n)=14*n \\ Charles R Greathouse IV, Sep 28 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved