A060569 Consider Pythagorean triples which satisfy X^2+(X+7)^2=Z^2; sequence gives increasing values of Z.
13, 17, 73, 97, 425, 565, 2477, 3293, 14437, 19193, 84145, 111865, 490433, 651997, 2858453, 3800117, 16660285, 22148705, 97103257, 129092113, 565959257, 752403973, 3298652285, 4385331725, 19225954453, 25559586377, 112057074433, 148972186537, 653116492145
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..2608
- Index entries for linear recurrences with constant coefficients, signature (0,6,0,-1).
Programs
-
Maple
f:=proc(n) option remember; if n=1 then RETURN(13) fi; if n=2 then RETURN(17) fi; if n=3 then RETURN(73) fi; if n=4 then RETURN(97) fi; 6*f(n-2)-f(n-4); end;
-
Mathematica
LinearRecurrence[{0,6,0,-1},{13,17,73,97},30] (* Harvey P. Dale, Dec 02 2017 *)
Formula
G.f.: (13 + 17 x - 5 x^2 - 5 x^3)/(1 - 6 x^2 + x^4). - Robert Israel, Jul 17 2017
Extensions
Edited by N. J. A. Sloane, Oct 06 2007
Comments