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.
%I A324747 #30 Apr 04 2019 10:30:44 %S A324747 12,48,63,76,108,192,292,304,432,567,652,768,873,972,1168,1216,1359, %T A324747 1728,2107,2608,3072,3087,3532,3888,4383,4525,4612,4672,4864,5103, %U A324747 5409,5836,6543,6912,7204,7857,8716,8748,10372,10432,12231,12288 %N A324747 Numbers k with exactly two distinct prime factors and such that phi(k) is a square, when: k = p^(2s) * q^(2t+1) with s >= 1, t >= 0, p <> q primes. %C A324747 An integer belongs to this sequence iff p*(p-1)*(q-1) = m^2. %C A324747 This is the second subsequence of A324745, the first one is A324746. %C A324747 Some values of (k,p,q,m): (12,2,3,2), (63,3,7,6), (76,2,19,6), (292,2,73,12), (652,2,163,18), (873,3,97,24). %C A324747 The primitive terms of this sequence are the products p^2 * q, with p<>q which satisfy p*(p-1)*(q-1) = m^2. The first few primitive terms are: 12, 63, 76, 292, 652, 873.. Then the integers (p^2 * q) * p^2 and (p^2 * q) * q^2 are new terms of the general sequence. %H A324747 David A. Corneth, <a href="/A324747/b324747.txt">Table of n, a(n) for n = 1..9878</a> (terms <= 10^10) %F A324747 phi(p^2 * q) = p*(p-1)*(q-1) = m^2 for primitive terms. %F A324747 phi(k) = (p^(s-1) * q^t * m)^2 with k as in the name of this sequence. %e A324747 63 = 3^2 * 7 and phi(63) = 3*2*6 = 6^2. %e A324747 1728 = 2^6 * 3^3 and phi(1728) = (2^2 * 3^1 * 2)^2 = 24^2. %o A324747 (PARI) isok(k) = {if (issquare(eulerphi(k)), my(expo = factor(k)[,2]); if ((#expo == 2)&& (expo[1]%2) != (expo[2]%2), return (1)););} \\ _Michel Marcus_, Mar 18 2019 %Y A324747 Cf. A039770, A054755, A324745, A324746. %K A324747 nonn %O A324747 1,1 %A A324747 _Bernard Schott_, Mar 13 2019