login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A334382 Least k whose set of divisors contains exactly n Pythagorean triples, or 0 if no such k exists. 1
60, 120, 240, 360, 960, 720, 3840, 1440, 2160, 2880, 8160, 3600, 69360, 8400, 8640, 7200, 32640, 9360, 16800, 14400, 34560, 24480, 130560, 18720, 77760, 54600, 28080, 25200, 67200, 37440, 11045580, 61200, 73440, 97920, 294000, 46800, 65520, 50400, 268800, 109200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This is a subsequence of A169823: a(n) == 0 (mod 60) because one side of every Pythagorean triple is divisible by 3, another by 4, and another by 5. The smallest and best-known Pythagorean triple is (a, b, c) = (3, 4, 5).
LINKS
EXAMPLE
a(3) = 240 because the set of divisors {1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 40, 48, 60, 80, 120, 240} contains 3 Pythagorean triples: (3, 4, 5), (6, 8, 10) and (12, 16, 20). The first triple is primitive.
MAPLE
with(numtheory):
for n from 1 to 52 do :
ii:=0:
for k from 60 by 60 to 10^8 while(ii=0) do:
d:=divisors(k):n0:=nops(d):it:=0:
for i from 1 to n0-1 do:
for j from i+1 to n0-2 do :
for m from i+2 to n0 do:
if d[i]^2 + d[j]^2 = d[m]^2
then
it:=it+1:
else
fi:
od:
od:
od:
if it = n
then
ii:=1: printf (`%d %d \n`, n, k):
else
fi:
od:
od:
CROSSREFS
Sequence in context: A169823 A309842 A177871 * A337098 A252953 A309315
KEYWORD
nonn,hard
AUTHOR
Michel Lagneau, Apr 26 2020
EXTENSIONS
a(31) from Giovanni Resta, Apr 27 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 02:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)