cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A057096 Saint-Exupéry numbers: ordered products of the three sides of Pythagorean triangles.

Original entry on oeis.org

60, 480, 780, 1620, 2040, 3840, 4200, 6240, 7500, 12180, 12960, 14760, 15540, 16320, 20580, 21060, 30720, 33600, 40260, 43740, 49920, 55080, 60000, 65520, 66780, 79860, 92820, 97440, 97500, 103680, 113400, 118080, 120120, 124320, 130560, 131820, 164640
Offset: 1

Views

Author

Henry Bottomley, Aug 01 2000

Keywords

Comments

It is an open question whether any two distinct Pythagorean Triples can have the same product of their sides.
From Amiram Eldar, Nov 22 2020: (Start)
Named after the French writer Antoine de Saint-Exupéry (1900-1944).
The problem of finding two distinct Pythagorean triples with the same product was proposed by Eckert (1984). It is equivalent of finding a nontrivial solution of the Diophantine equation x*y*(x^4-y^4) = z*w*(z^4-w^4) (Bremner and Guy, 1988). (End)

Examples

			a(1) = 3*4*5 = 60.
		

References

  • Richard K. Guy, "Triangles with Integer Sides, Medians and Area." D21 in Unsolved Problems in Number Theory, 2nd ed. New York: Springer-Verlag, pp. 188-190, 1994.
  • Antoine de Saint-Exupéry, Problème du Pharaon, Liège : Editions Dynamo, 1957.

Crossrefs

Programs

  • Mathematica
    k=5000000; lst={}; Do[Do[If[IntegerQ[a=Sqrt[c^2-b^2]], If[a>=b, Break[]]; x=a*b*c; If[x<=k, AppendTo[lst,x]]], {b,c-1,4,-1}], {c,5,400,1}]; Union@lst (* Vladimir Joseph Stephan Orlovsky, Sep 05 2009 *)

Formula

a(n) = 60*A057097(n) = A057098(n)*A057099(n)*A057100(n).