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.

A356433 Numbers k such that, in the prime factorization of k, the least common multiple of the exponents equals the least common multiple of the prime factors.

This page as a plain text file.
%I A356433 #28 Feb 02 2023 04:25:33
%S A356433 1,4,27,72,108,192,576,800,1458,1728,2916,3125,5120,5832,6272,12500,
%T A356433 21600,25600,30375,36000,46656,48600,77760,84375,114688,116640,121500,
%U A356433 138240,169344,225000,247808,337500,384000,388800,395136,583200,600000,653184,691200,750141,802816,823543,857304,979776
%N A356433 Numbers k such that, in the prime factorization of k, the least common multiple of the exponents equals the least common multiple of the prime factors.
%C A356433 Numbers k such that A072411(k) = A007947(k). - _Michel Marcus_, Aug 29 2022
%C A356433 Terms p^p, p prime, form the subsequence A051674. - _Bernard Schott_, Sep 21 2022
%C A356433 Terms p^q * q^p with distinct primes p and q form the subsequence A082949. - _Bernard Schott_, Feb 01 2023
%e A356433 576 = 2^6 * 3^2, lcm(2,3) = 6 = lcm(6,2), hence 576 is a term.
%t A356433 Select[Range[10^6], Equal @@ LCM @@ FactorInteger[#] &] (* _Amiram Eldar_, Aug 07 2022 *)
%o A356433 (PARI) isok(k) = my(f=factor(k)); lcm(f[,1]) == lcm(f[,2]); \\ _Michel Marcus_, Aug 07 2022
%o A356433 (Python)
%o A356433 from math import lcm
%o A356433 from sympy import factorint
%o A356433 def ok(n): f = factorint(n); return lcm(*f.keys()) == lcm(*f.values())
%o A356433 print([k for k in range(10**6) if ok(k)]) # _Michael S. Branicky_, Aug 07 2022
%Y A356433 Cf. A054411, A054412, A068935, A068936, A068937, A068938.
%Y A356433 Cf. A072411, A007947, A051674, A082949.
%K A356433 nonn
%O A356433 1,2
%A A356433 _Jean-Marc Rebert_, Aug 07 2022