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!)
A120944 Composite squarefree numbers. 113

%I #61 Sep 08 2022 08:45:26

%S 6,10,14,15,21,22,26,30,33,34,35,38,39,42,46,51,55,57,58,62,65,66,69,

%T 70,74,77,78,82,85,86,87,91,93,94,95,102,105,106,110,111,114,115,118,

%U 119,122,123,129,130,133,134,138,141,142,143,145,146,154,155,158,159,161

%N Composite squarefree numbers.

%C Intersection of A002808 and A005117: n > 1 such that A008966(n) * (1-A010051(n)) = 1. - _Reinhard Zumkeller_, Dec 19 2011

%H Reinhard Zumkeller, <a href="/A120944/b120944.txt">Table of n, a(n) for n = 1..10000</a>

%F From _Enrique Pérez Herrero_, Apr 01 2012: (Start)

%F Solutions to floor(omega(x)/bigomega(x))*(1-floor(1/bigomega(x))) = 1, where bigomega is A001222 and omega is A001221.

%F Sum_{n>=1} 1/a(n)^s = zeta(s)/zeta(2s) - 1 - PrimeZeta(s). (End)

%p select(not(isprime) and numtheory:-issqrfree, [$2..1000]); # _Robert Israel_, Jul 07 2015

%t lst={};Do[If[SquareFreeQ[n],If[ !PrimeQ[n],AppendTo[lst,n]]],{n,2,6!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jan 20 2009; updated by _Jean-François Alcover_, Jun 19 2013 *)

%t Select[Range[200], PrimeNu[#] > 1 && SquareFreeQ[#] &] (* _Carlos Eduardo Olivieri_, Jul 07 2015 *)

%o (Magma) [n: n in [6..161] | IsSquarefree(n) and not IsPrime(n)]; // _Bruno Berselli_, Mar 03 2011

%o (Haskell)

%o a120944 n = a120944_list !! (n-1)

%o a120944_list = filter ((== 1) . a008966) a002808_list

%o -- _Reinhard Zumkeller_, Dec 19 2011

%o (PARI) is(n)=issquarefree(n)&&!isprime(n)&&n>1 \\ _Charles R Greathouse IV_, Apr 11 2012

%o (Python)

%o from sympy import factorint

%o def ok(n): f = factorint(n); return len(f) > 1 and all(f[p] < 2 for p in f)

%o print(list(filter(ok, range(1, 162)))) # _Michael S. Branicky_, Jun 10 2021

%Y Cf. A000469 (Nonprime squarefree numbers).

%Y Cf. A001221, A001222, A002808, A005117, A008966, A010051.

%Y Set of powers: A182853.

%K nonn

%O 1,1

%A _Zak Seidov_, Aug 19 2006

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 May 3 03:00 EDT 2024. Contains 372203 sequences. (Running on oeis4.)