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.

Showing 1-2 of 2 results.

A109424 Numbers n such that sigma(n)/bigomega(n) is not an integer [sigma(n) = sum of divisors of n; bigomega(n) = number of prime divisors of n, counted with multiplicity].

Original entry on oeis.org

4, 9, 12, 16, 25, 27, 28, 32, 36, 40, 48, 49, 52, 63, 64, 75, 76, 80, 81, 90, 100, 104, 112, 117, 121, 124, 128, 136, 144, 148, 162, 169, 171, 172, 175, 176, 180, 192, 196, 208, 225, 232, 234, 243, 244, 252, 256, 268, 272, 273, 279, 289, 292, 296, 300, 306, 316
Offset: 1

Views

Author

Emeric Deutsch, Jun 28 2005

Keywords

Comments

Integers greater than 1 and not in A109423.
Includes all squares > 1. - Robert Israel, Jan 16 2017

Examples

			The number 12 is in the sequence because sigma(12)=28 (1+2+3+4+6+12) and bigomega(12)=3 (2,2,3) and so sigma(12)/bigomega(12) = 28/3.
The number 24 is not in the sequence because sigma(24)=60 (1+2+3+4+6+8+12+24) and bigomega(24)=4 (2,2,2,3) and so sigma(24)/bigomega(24) = 15.
		

Crossrefs

Programs

  • Maple
    with(numtheory): b:=proc(n) if type(sigma(n)/bigomega(n),integer)=false then n else fi end: seq(b(n),n=2..340);
  • Mathematica
    PrimeOmega[n_] := Plus @@ FactorInteger[n][[All, 2]]; Select[Range[2, 320], ! IntegerQ[DivisorSigma[1, #]/PrimeOmega[#]] &] (* Jean-François Alcover, May 02 2013 *)
    Select[Range[2,320],!IntegerQ[DivisorSigma[1,#]/PrimeOmega[#]]&] (* Harvey P. Dale, Aug 12 2020 *)
  • PARI
    isok(n) = denominator(sigma(n)/bigomega(n)) != 1; \\ Michel Marcus, Jan 17 2017

A175786 Numbers n such that the number of prime divisors of n (counted with multiplicity) is not a divisor of phi(n).

Original entry on oeis.org

8, 12, 20, 30, 32, 44, 48, 50, 54, 64, 66, 68, 72, 75, 80, 81, 92, 96, 102, 108, 110, 112, 116, 120, 125, 128, 138, 160, 162, 164, 165, 168, 170, 174, 180, 188, 192, 208, 212, 230, 236, 240, 242, 243, 246, 252, 255, 270, 272, 275, 280, 282, 284, 288, 290, 304
Offset: 1

Views

Author

Enrique Pérez Herrero, Sep 04 2010

Keywords

Comments

a(n) is in the sequence if A001222(n) does not divides A000010(n).

Crossrefs

Programs

  • Mathematica
    Select[Range[2,400],Mod[EulerPhi[#],PrimeOmega[#]]!=0&] (* Harvey P. Dale, Mar 14 2020 *)
  • PARI
    isok(n) =  (eulerphi(n) % bigomega(n)); \\ Michel Marcus, Aug 27 2013
Showing 1-2 of 2 results.