OFFSET
0,2
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
From R. J. Mathar, Jun 23 2009: (Start)
a(n) = 14*n.
a(n) = 2*a(n-1) - a(n-2).
G.f.: 14*x/(x-1)^2. (End)
From Elmo R. Oliveira, Apr 08 2025: (Start)
E.g.f.: 14*x*exp(x).
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
