OFFSET
0,1
LINKS
Emanuel Lasker, Zur Theorie der kanonischen Formen, Mathematische Annalen, 58 (1904), 434-440.
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
a(n) = n^2 - 2*n + 10.
a(n) = a(n-1) + 2*n-3 (with a(0)=10). - Vincenzo Librandi, Nov 27 2010
G.f.: (-10 + 21*x - 13*x^2) / (x-1)^3 . - R. J. Mathar, Aug 31 2011
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {10, 9, 10}, 60] (* Harvey P. Dale, May 04 2016 *)
PROG
(Sage) [lucas_number1(3, n, -9) for n in range(-1, 49)] # Zerinvary Lajos, May 16 2009
(Magma) [ n^2-2*n+10: n in [0..50] ];
(PARI) a(n)=n^2-2*n+10 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Jan 11 2009
STATUS
approved