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.

A066763 Numbers k such that (k, phi(k)) lies on a circle with integral radius centered at the origin, i.e., k^2 + phi(k)^2 is a square.

This page as a plain text file.
%I A066763 #16 Dec 19 2024 21:16:46
%S A066763 15,45,70,75,135,140,225,280,350,375,377,405,490,560,627,665,675,700,
%T A066763 980,1120,1125,1215,1400,1750,1875,1881,1960,2025,2240,2450,2800,3325,
%U A066763 3375,3430,3500,3645,3655,3920,4480,4655,4900,4901,5600,5625,5643,6075
%N A066763 Numbers k such that (k, phi(k)) lies on a circle with integral radius centered at the origin, i.e., k^2 + phi(k)^2 is a square.
%H A066763 Harry J. Smith, <a href="/A066763/b066763.txt">Table of n, a(n) for n = 1..1000</a>
%e A066763 15^2 + phi(15)^2 = 225 + 64 = 289 = 17^2, so 15 is a term of the sequence.
%t A066763 Select[ Range[ 1, 10^4 ], IntegerQ[ Sqrt[ #^2 + EulerPhi[ # ]^2 ] ] & ]
%o A066763 (PARI) isok(k) = { issquare(k^2 + eulerphi(k)^2) } \\ _Harry J. Smith_, Mar 23 2010
%Y A066763 Cf. A066764, A066782.
%K A066763 nonn
%O A066763 1,1
%A A066763 _Joseph L. Pe_, Jan 17 2002