login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130897 Numbers that are not exponentially squarefree. 7
16, 48, 80, 81, 112, 144, 162, 176, 208, 240, 256, 272, 304, 324, 336, 368, 400, 405, 432, 464, 496, 512, 528, 560, 567, 592, 624, 625, 648, 656, 688, 720, 752, 768, 784, 810, 816, 848, 880, 891, 912, 944, 976 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A positive integer is called exponentially squarefree (e-squarefree) if in its prime power factorization all the exponents are squarefree.
a(n) is the sequence of positive integers in which prime power factorization there is at least one nonsquarefree exponent.
n is non-e-squarefree iff f(n)=0, where f(n) is the exponential Moebius function A166234.
Product_{k = 1..A001221(n)} A008966(A124010(n,k)) = 0. - Reinhard Zumkeller, Mar 13 2012
The density of {a(n)} is 0.04407699... (see comment in A209061). - Peter J. C. Moses and Vladimir Shevelev, Sep 08 2015
LINKS
M. V. Subbarao, On some arithmetic convolutions, in The Theory of Arithmetic Functions, Lecture Notes in Mathematics No. 251, 247-271, Springer, 1972, doi:10.1007/BFb0058796.
Laszlo Toth, On certain arithmetic functions involving exponential divisors, II., Annales Univ. Sci. Budapest., Sect. Comp., 27 (2007), 155-166.
EXAMPLE
16=2^4, 48=2^4*3, 256=2^8 are non-e-squarefree, since 4 and 8 are nonsquarefree.
MAPLE
filter:=n -> not andmap(t -> numtheory:-issqrfree(t[2]), ifactors(n)[2]);
select(filter, [$1..1000]); # Robert Israel, Sep 03 2015
MATHEMATICA
Select[Range@ 1000, ! AllTrue[Last /@ FactorInteger@ #, SquareFreeQ] &] (* Michael De Vlieger, Sep 07 2015, Version 10 *)
PROG
(Haskell)
a130897 n = a130897_list !! (n-1)
a130897_list = filter
(any (== 0) . map (a008966 . fromIntegral) . a124010_row) [1..]
-- Reinhard Zumkeller, Mar 13 2012
(PARI) is(n)=my(f=factor(n)[, 2]); for(i=1, #f, if(!issquarefree(f[i]), return(1))); 0 \\ Charles R Greathouse IV, Sep 03 2015
CROSSREFS
Complement of A209061; subsequence of A013929, A046099, and A046101.
Sequence in context: A239344 A195087 A348882 * A336595 A069084 A084112
KEYWORD
nonn
AUTHOR
Laszlo Toth, Mar 18 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)