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.

A209061 Exponentially squarefree numbers.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 13 2012

Keywords

Comments

Numbers having only squarefree exponents in their canonical prime factorization.
According to the formula of Theorem 3 [Toth], the density of the exponentially squarefree numbers is 0.9559230158619... (A262276). - Peter J. C. Moses and Vladimir Shevelev, Sep 10 2015
From Vladimir Shevelev, Sep 24 2015: (Start)
A generalization. Let S be a finite or infinite increasing integer sequence s=s(n), s(0)=0.
Let us call a positive number N an exponentially S-number, if all exponents in its prime power factorization are in the sequence S.
Let {u(n)} be the characteristic function of S. Then, for the density h=h(S) of the exponentially S-numbers, we have the representations
h(S) = Product_{prime p} Sum_{j in S} (p-1)/p^(j+1) = Product_{p} (1 + Sum_{j>=1} (u(j) - u(j-1))/p^j). In particular, if S = {0,1}, then the exponentially S-numbers are squarefree numbers; if S consists of 0 and {2^k}A138302%20(see%20%5BShevelev%5D,%202007);%20if%20S%20consists%20of%200%20and%20squarefree%20numbers,%20then%20u(n)=%7Cmu(n)%7C,%20where%20mu(n)%20is%20the%20M%C3%B6bius%20function%20(A008683),%20we%20obtain%20the%20density%20h%20of%20the%20exponentially%20squarefree%20numbers%20(cf.%20Toth's%20link,%20Theorem%203);%20the%20calculation%20of%20h%20with%20a%20very%20high%20degree%20of%20accuracy%20belongs%20to%20_Juan%20Arias-de-Reyna">{k>=0}, then the exponentially S-numbers form A138302 (see [Shevelev], 2007); if S consists of 0 and squarefree numbers, then u(n)=|mu(n)|, where mu(n) is the Möbius function (A008683), we obtain the density h of the exponentially squarefree numbers (cf. Toth's link, Theorem 3); the calculation of h with a very high degree of accuracy belongs to _Juan Arias-de-Reyna (A262276). Note that if S contains 1, then h(S) >= 1/zeta(2) = 6/Pi^2; otherwise h(S) = 0. Indeed, in the latter case, the density of the sequence of exponentially S-numbers does not exceed the density of A001694, which equals 0. (End)
The term "exponentially squarefree number" was apparently coined by Subbarao (1972). - Amiram Eldar, May 28 2025

Crossrefs

Programs

  • Haskell
    a209061 n = a209061_list !! (n-1)
    a209061_list = filter
       (all (== 1) . map (a008966 . fromIntegral) . a124010_row) [1..]
    
  • Mathematica
    Select[Range@ 69, Times @@ Boole@ Map[SquareFreeQ, Last /@ FactorInteger@ #] > 0 &] (* Michael De Vlieger, Sep 07 2015 *)
  • PARI
    is(n)=my(f=factor(n)[,2]); for(i=1,#f,if(!issquarefree(f[i]), return(0))); 1 \\ Charles R Greathouse IV, Sep 02 2015

Formula

A166234(a(n)) <> 0.
Product_{k=1..A001221(n)} A008966(A124010(n,k)) = 1.
One can prove that the principal term of Toth's asymptotics for the density of this sequence (cf. Toth's link, Theorem 3) equals also Product_{prime p}(Sum_{j in S}(p-1)/p^{j+1})*x, where S is the set of 0 and squarefree numbers. The remainder term O(x^(0.2+t)), where t>0 is arbitrarily small, was obtained by L. Toth while assuming the Riemann Hypothesis. - Vladimir Shevelev, Sep 12 2015