A157085
Consider all Consecutive Integer Pythagorean quintuples (X, X+1, X+2, Z-1, Z) ordered by increasing Z; sequence gives Z values.
Original entry on oeis.org
2, 14, 134, 1322, 13082, 129494, 1281854, 12689042, 125608562, 1243396574, 12308357174, 121840175162, 1206093394442, 11939093769254, 118184844298094, 1169909349211682, 11580908647818722, 114639177128975534, 1134810862641936614, 11233469449290390602, 111199883630261969402
Offset: 0
a(3) = 134 since 108^2 + 109^2 + 110^2 = 133^2 + 134^2.
- A. H. Beiler, Recreations in the Theory of Numbers. New York: Dover, 1964, pp. 122-125.
- L. E. Dickson, History of the Theory of Numbers, Vol. II, Diophantine Analysis. Dover Publications, Inc., Mineola, NY, 2005, pp. 181-183.
- W. Sierpinski, Pythagorean Triangles. Dover Publications, Mineola NY, 2003, pp. 16-22.
-
LinearRecurrence[{11, -11, 1}, {2, 14, 134}, 25] (* Paolo Xausa, May 29 2025 *)
-
for(y=0,oo,yy=(y+2)^2+(y+1)^2;for(x=sqrtint(yy\3),ceil(sqrt(yy/3)),x^2+(x-1)^2+(x-2)^2==yy&&print1(y+2,", "))) \\ For illustrative purpose. - M. F. Hasler, Oct 04 2014
A157092
Consider all consecutive integer Pythagorean 9-tuples (X, X+1, X+2, X+3, X+4, Z-3, Z-2, Z-1, Z) ordered by increasing Z; sequence gives X values.
Original entry on oeis.org
0, 36, 680, 12236, 219600, 3940596, 70711160, 1268860316, 22768774560, 408569081796, 7331474697800, 131557975478636, 2360712083917680, 42361259535039636, 760141959546795800, 13640194012307284796, 244763350261984330560, 4392100110703410665316, 78813038642399407645160
Offset: 0
a(2)=680 since 680^2 + 681^2 + 682^2 + 683^2 + 684^2 = 761^2 + 762^2 + 763^2 + 764^2.
- A. H. Beiler, Recreations in the Theory of Numbers. New York: Dover, 1964, pp. 122-125.
- L. E. Dickson, History of the Theory of Numbers, Vol. II, Diophantine Analysis. Dover Publications, Inc., Mineola, NY, 2005, pp. 181-183.
- W. Sierpinski, Pythagorean Triangles. Dover Publications, Mineola NY, 2003, pp. 16-22.
-
[Round((4^(n+1)*((1+Sqrt(5/4))^(2*n+1) + (1-Sqrt(5/4))^(2*n+1)) - 2*4)/4): n in [0..50]]; // G. C. Greubel, Nov 04 2017
-
RecurrenceTable[{a[0]==0,a[1]==36,a[n]==18a[n-1]-a[n-2]+32},a,{n,20}] (* or *) LinearRecurrence[{19,-19,1},{0,36,680},20] (* Harvey P. Dale, Oct 09 2012 *)
-
x='x+O('x^50); concat([0], Vec(4*x*(-9+x)/((x-1)*(x^2-18*x+1)))) \\ G. C. Greubel, Nov 04 2017
A157097
Consider all Consecutive Integer Pythagorean 11-tuples (X, X+1, X+2, X+3, X+4, X+5, Z-4, Z-3, Z-2, Z-1, Z) ordered by increasing Z; sequence gives Z values.
Original entry on oeis.org
5, 65, 1385, 30365, 666605, 14634905, 321301265, 7053992885, 154866542165, 3400009934705, 74645352021305, 1638797734533965, 35978904807725885, 789897108035435465, 17341757471971854305, 380728767275345359205, 8358691122585626048165, 183510475929608427700385, 4028871779328799783360265
Offset: 0
a(2)=65 since 55^2 + 56^2 + 57^2 + 58^2 + 59^2 + 60^2 = 61^2 + 62^2 + 63^2 + 64^2 + 65^2.
- A. H. Beiler, Recreations in the Theory of Numbers. New York: Dover, 1964, pp. 122-125.
- L. E. Dickson, History of the Theory of Numbers, Vol. II, Diophantine Analysis. Dover Publications, Inc., Mineola, NY, 2005, pp. 181-183.
- W. Sierpinski, Pythagorean Triangles. Dover Publications, Mineola NY, 2003, pp. 16-22.
-
LinearRecurrence[{23, -23, 1}, {5, 65, 1385}, 25] (* Paolo Xausa, May 29 2025 *)
A157089
Consider all consecutive integer Pythagorean septuples (X, X+1, X+2, X+3, Z-2, Z-1, Z) ordered by increasing Z; sequence gives Z values.
Original entry on oeis.org
3, 27, 363, 5043, 70227, 978123, 13623483, 189750627, 2642885283, 36810643323, 512706121227, 7141075053843, 99462344632563, 1385331749802027, 19295182152595803, 268747218386539203, 3743165875258953027
Offset: 0
a(3) = 363 since 312^2 + 313^2 + 314^2 + 315^2 = 361^2 + 362^2 + 363^2.
- A. H. Beiler, Recreations in the Theory of Numbers. New York: Dover, 1964, pp. 122-125.
- L. E. Dickson, History of the Theory of Numbers, Vol. II, Diophantine Analysis. Dover Publications, Inc., Mineola, NY, 2005, pp. 181-183.
- W. Sierpinski, Pythagorean Triangles. Dover Publications, Mineola NY, 2003, pp. 16-22.
-
LinearRecurrence[{15,-15,1},{3,27,363},20] (* Harvey P. Dale, May 14 2022 *)
Showing 1-4 of 4 results.
Comments