OFFSET
1,1
LINKS
L. J. Gerstein, Pythagorean triples and inner products, Math. Mag., 78 (2005), 205-213.
Index entries for linear recurrences with constant coefficients, signature (7,-7,1).
FORMULA
a(n) = (2+(3-2*sqrt(2))^n+(3+2*sqrt(2))^n)/4.
a(n) = 7*a(n-1)-7*a(n-2)+a(n-3).
G.f.: -x*(x^2-5*x+2) / ((x-1)*(x^2-6*x+1)).
MATHEMATICA
CoefficientList[Series[(x^2 - 5 x + 2)/((1 - x) (x^2 - 6 x + 1)), {x, 0, 33}], x] (* Vincenzo Librandi, Nov 26 2015 *)
LinearRecurrence[{7, -7, 1}, {2, 9, 50}, 30] (* Harvey P. Dale, Jan 17 2017 *)
PROG
(PARI) Vec(-x*(x^2-5*x+2)/((x-1)*(x^2-6*x+1)) + O(x^100)) \\ Altug Alkan, Nov 26 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Mar 14 2006
EXTENSIONS
Corrected and edited by Colin Barker, Jul 31 2013
STATUS
approved