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.

A382062 Powerful numbers whose number of divisors is divisible by their number of unitary divisors.

This page as a plain text file.
%I A382062 #9 Mar 14 2025 21:16:50
%S A382062 1,8,27,32,72,108,125,128,200,216,243,343,392,432,500,512,648,675,864,
%T A382062 968,1000,1125,1152,1323,1331,1352,1372,1728,1944,2000,2048,2187,2197,
%U A382062 2312,2744,2888,3087,3125,3200,3267,3375,3456,4000,4232,4563,4913,5000,5324,5400
%N A382062 Powerful numbers whose number of divisors is divisible by their number of unitary divisors.
%C A382062 Powerful numbers k such that A034444(k) | A000005(k).
%C A382062 The primitive terms of A382061: if k is a term and m is a squarefree number that is coprime to k, then k*m is a term of A382061. The asymptotic density of A382061 can be calculated using the terms of this sequence (see A382061 for a formula).
%H A382062 Amiram Eldar, <a href="/A382062/b382062.txt">Table of n, a(n) for n = 1..10000</a>
%H A382062 <a href="/index/Pow#powerful">Index entries for sequences related to powerful numbers</a>.
%e A382062 27 = 3^3 is a term since it is powerful, A000005(27) = 4, A034444(27) = 2, and 2 | 4.
%e A382062 72 = 2^3 * 3^2 is a term since it is powerful, A000005(72) = 12, A034444(72) = 4, and 4 | 12.
%t A382062 q[k_] := Module[{e = FactorInteger[k][[;;, 2]]}, AllTrue[e, # > 1 &] && Divisible[Times @@ (e+1), 2^Length[e]]]; Select[Range[5400], # == 1 || q[#] &]
%o A382062 (PARI) isok(k) = if(k == 1, 1, my(f = factor(k)); vecmin(f[,2]) > 1 && !(numdiv(f) % (1<<omega(f))));
%Y A382062 Intersection of A001694 and A382061.
%Y A382062 Cf. A000005, A034444, A382064.
%K A382062 nonn,easy
%O A382062 1,2
%A A382062 _Amiram Eldar_, Mar 14 2025