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!)
A308664 Numbers k such that tau(k) and phi(k) are the legs of a Pythagorean triple. 0
20, 36, 60, 100, 300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence is finite since for all large enough n, we have tau(n) < n^(1/4) and phi(n) > n^(3/4) while, if x < y are the legs of a Pythagorean triangle, we always have y < x^2/2. - Giovanni Resta, Jul 27 2019
The sequence is likely complete. If a(6) exists, it satisfies tau(a(6)) > 1000. - Max Alekseyev, Sep 30 2023
LINKS
EXAMPLE
60 is in this sequence because tau(60) = 12 and phi(60) = 16, legs of the Pythagorean triple {12, 16, 20} (12^2 + 16^2 = 20^2).
MATHEMATICA
Select[Range[300], IntegerQ@Sqrt[DivisorSigma[0, #]^2 + EulerPhi[#]^2] &] (* Amiram Eldar, Jul 26 2019 *)
PROG
(PARI) for(i = 1, 2000, a = eulerphi(i); b = numdiv(i); if(issquare(a^2 + b^2), print1(i, ", ")))
CROSSREFS
Sequence in context: A078210 A174628 A316098 * A184065 A259734 A294736
KEYWORD
nonn,fini,more
AUTHOR
Antonio Roldán, Jul 14 2019
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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)