OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
a(n) = 21*n^2 - 14*n = 7*A000567(n).
a(n) = a(n-1) + 42*n - 35 (with a(0)=0). - Vincenzo Librandi, Nov 27 2010
From G. C. Greubel, Aug 29 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
G.f.: 7*x*(1 + 5*x)/(1 - x)^3.
E.g.f.: 7*x*(1 + 3*x)*exp(x). (End)
MATHEMATICA
s=0; lst={s}; Do[s+=n; AppendTo[lst, s], {n, 7, 8!, 42}]; lst (* Vladimir Joseph Stephan Orlovsky, Apr 03 2009 *)
Table[7*n*(3*n-2), {n, 0, 25}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 7, 56}, 25] (* G. C. Greubel, Aug 29 2016 *)
PROG
(Magma) [ 7*n*(3*n-2): n in [0..40] ];
(PARI) a(n)=7*n*(3*n-2) \\ Charles R Greathouse IV, Aug 29 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Jan 20 2009
STATUS
approved