OFFSET
1,2
COMMENTS
From Robert Israel, Dec 12 2017: (Start)
If x and y are coprime members of the sequence, then x*y is in the sequence.
Contains all members of A133028 except 3. (End)
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000 (first 349 terms from Robert Israel)
J. A. B. Dris and C. Leibovici, Why is this sequence not in the OEIS?, October 8 2017.
ProofWiki, Integers whose ratio between sigma and phi is square, misses the second term, 14 as of Dec 2017.
FORMULA
a(n) = sigma(n)/phi(n) = m^2, for some integer m.
EXAMPLE
sigma(14)=3*8=24, phi(14)=14*(1/2)*(6/7)=6, sigma(14)/phi(14)=2^2, so 14 is in the list.
MAPLE
for n from 1 to 100000 do
r := numtheory[sigma](n)/numtheory[phi](n) ;
if issqr(r) then
printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Dec 07 2017
MATHEMATICA
Select[Range[10^5], IntegerQ@ Sqrt[DivisorSigma[1, #]/EulerPhi[#]] &] (* Michael De Vlieger, Dec 08 2017 *)
PROG
(PARI) isok(n) = my(q=sigma(n)/eulerphi(n)); issquare(q) && (denominator(q) == 1); \\ Michel Marcus, Dec 07 2017; corrected Sep 21 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Jose Arnaldo Bebita Dris, Oct 08 2017
STATUS
approved