OFFSET
0,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
From G. C. Greubel, Oct 29 2019: (Start)
G.f.: (100 + 141*x + x^2)/(1-x)^3.
E.g.f.: (100 + 341*x + 121*x^2)*exp(x). (End)
MAPLE
seq((11*n+10)^2, n=0..40); # G. C. Greubel, Oct 29 2019
MATHEMATICA
(11*Range[0, 40]+10)^2 (* or *) LinearRecurrence[{3, -3, 1}, {100, 441, 1024}, 40] (* Harvey P. Dale, Mar 31 2016 *)
PROG
(PARI) a(n)=(11*n+10)^2 \\ Charles R Greathouse IV, Jun 17 2017
(Magma) [(11*n+10)^2: n in [0..40]]; // G. C. Greubel, Oct 29 2019
(Sage) [(11*n+10)^2 for n in (0..40)] # G. C. Greubel, Oct 29 2019
(GAP) List([0..40], n-> (11*n+10)^2); # G. C. Greubel, Oct 29 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved