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!)
A109422 Numbers n such that tau(n)/bigomega(n) is not an integer [tau(n) =number of divisors of n; bigomega(n)=number of prime divisors of n, counted with multiplicities]. 1
4, 8, 9, 16, 25, 27, 30, 32, 36, 42, 49, 64, 66, 70, 72, 78, 81, 100, 102, 105, 108, 110, 114, 120, 121, 125, 128, 130, 138, 144, 154, 165, 168, 169, 170, 174, 180, 182, 186, 190, 195, 196, 200, 216, 222, 225, 230, 231, 238, 240, 243, 246, 252, 255, 256, 258 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Integers greater than 1 and not in A109421.
LINKS
EXAMPLE
16 is in the sequence because tau(16)=5 (1,2,4,8,16) and bigomega(16)=4 (2,2,2,2) and so tau(16)/bigomega(16)=5/4.
12 is not in the sequence because tau(12)=6 (1,2,3,4,6,12) and bigomega(12)=3 (2,2,3) and so tau(12)/bigomega(12)=2
MAPLE
with(numtheory): b:=proc(n) if type(tau(n)/bigomega(n), integer)=false then n else fi end: seq(b(n), n=2..300);
MATHEMATICA
PrimeOmega[n_] := Plus @@ FactorInteger[n][[All, 2]]; Select[Range[2, 300], ! IntegerQ[DivisorSigma[0, #]/PrimeOmega[#]] &] (* Jean-François Alcover, May 02 2013 *)
Select[Range[2, 300], !IntegerQ[DivisorSigma[0, #]/PrimeOmega[#]]&] (* Harvey P. Dale, Jun 11 2022 *)
CROSSREFS
Complement of A109421.
Sequence in context: A335448 A140104 A127398 * A158804 A341645 A339497
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jun 28 2005
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)