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.

A370785 Powerful numbers with an even number of prime factors (counted with multiplicity).

This page as a plain text file.
%I A370785 #11 Mar 02 2024 03:48:08
%S A370785 1,4,9,16,25,36,49,64,81,100,121,144,169,196,216,225,256,289,324,361,
%T A370785 400,441,484,529,576,625,676,729,784,841,864,900,961,1000,1024,1089,
%U A370785 1156,1225,1296,1369,1444,1521,1600,1681,1764,1849,1936,1944,2025,2116,2209
%N A370785 Powerful numbers with an even number of prime factors (counted with multiplicity).
%C A370785 Jakimczuk (2024) proved:
%C A370785 The number of terms that do not exceed x is N(x) = c * sqrt(x) + o(sqrt(x)) where c = (zeta(3/2)/zeta(3) + 1/zeta(3/2))/2 = 1.278023... .
%C A370785 The relative asymptotic density of this sequence within the powerful numbers is (1 + zeta(3)/(zeta(3/2)^2))/2 = 0.588069... .
%C A370785 In general, the relative asymptotic density of the s-full numbers (numbers whose exponents in their prime factorization are all >= s) with an even number of prime factors (counted with multiplicity) within the s-full numbers is larger than 1/2 when s is even.
%H A370785 Amiram Eldar, <a href="/A370785/b370785.txt">Table of n, a(n) for n = 1..10000</a>
%H A370785 Rafael Jakimczuk, <a href="http://dx.doi.org/10.13140/RG.2.2.12174.13124">Arithmetical Functions over the Powerful Part of an Integer</a>, ResearchGate, 2024.
%t A370785 q[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, n == 1 || AllTrue[e, # > 1 &] && EvenQ[Total[e]]]; Select[Range[2500], q]
%o A370785 (PARI) is(n) = {my(e = factor(n)[, 2]); n == 1 || (vecmin(e) > 1 && !(vecsum(e)%2));}
%Y A370785 Intersection of A001694 and A028260.
%Y A370785 Complement of A370786 within A001694.
%Y A370785 A370787 is a subsequence.
%Y A370785 Cf. A002117, A078434, A090699.
%K A370785 nonn,easy
%O A370785 1,2
%A A370785 _Amiram Eldar_, Mar 02 2024