Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #13 Sep 21 2016 09:07:17
%S 9,27,45,49,64,486,637,867,961,1035,1352,1408,1521,3971,4913,7581,
%T 8750,12936,14283,19602,20825,23104,36481,43681,44506,48600,49005,
%U 58621,63001,72897,75843,85697,90168,97470,108241,122317,127008
%N Numbers n such that n*phi(n-1) is a perfect square.
%H Charles R Greathouse IV, <a href="/A069069/b069069.txt">Table of n, a(n) for n = 1..1000</a>
%t Rest[Select[Range[130000],IntegerQ[Sqrt[# EulerPhi[#-1]]]&]] (* _Harvey P. Dale_, Jun 08 2013 *)
%o (PARI) is(n)=issquare(eulerphi(n-1)*n) \\ _Charles R Greathouse IV_, Sep 21 2016
%K nonn
%O 1,1
%A _Benoit Cloitre_, Apr 05 2002