OFFSET
0,2
LINKS
Bruno Berselli, Table of n, a(n) for n = 0..1000
Bruno Berselli, Illustration of initial terms: An origin of A185019.
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
G.f.: x*(11+17*x)/(1-x)^3.
a(n) = A195025(-n).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n >= 3. - Wesley Ivan Hurt, Dec 18 2020
MATHEMATICA
CoefficientList[Series[x (11 + 17 x)/(1 - x)^3, {x, 0, 45}], x] (*Vincenzo Librandi_, Aug 18 2013 *)
PROG
(PARI) for(n=0, 42, print1(n*(14*n-3)", "));
(Magma) [n*(14*n-3): n in [0..42]];
(Magma) I:=[0, 11, 50]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+Self(n-3): n in [1..50]]; // Vincenzo Librandi, Aug 18 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Oct 14 2011 - based on remarks and sequences by Omar E. Pol
STATUS
approved