The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A099812 Number of distinct primes dividing 2n (i.e., omega(2n)). 3
1, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 3, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 3, 2, 3, 2, 2, 2, 3, 2, 2, 3, 2, 2, 3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 3, 2, 3, 2, 2, 3, 2, 2, 3, 1, 3, 3, 2, 2, 3, 3, 2, 2, 2, 2, 3, 2, 3, 3, 2, 2, 2, 2, 2, 3, 3, 2, 3, 2, 2, 3, 3, 2, 3, 2, 3, 2, 2, 2, 3, 2, 2, 3, 2, 2, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Bisection of A001221.
LINKS
EXAMPLE
a(6)=2 because 12 = 2*2*3 has 2 distinct prime divisors;
a(15)=3 because 30 = 2*3*5 has 3 distinct prime divisors.
MAPLE
with(numtheory): omega:=proc(n) local div, A, j: div:=divisors(n): A:={}: for j from 1 to tau(n) do if isprime(div[j])=true then A:=A union {div[j]} else A:=A fi od: nops(A) end: seq(omega(2*n), n=1..130); # Emeric Deutsch, Mar 10 2005
MATHEMATICA
Table[PrimeNu[2*n], {n, 1, 50}] (* G. C. Greubel, May 21 2017 *)
PROG
(PARI) for(n=1, 50, print1(omega(2*n), ", ")) \\ G. C. Greubel, May 21 2017
(Magma) [#PrimeDivisors(2*n): n in [1..100]]; // Vincenzo Librandi, Jul 26 2017
CROSSREFS
Sequence in context: A201219 A254315 A080942 * A246600 A068068 A193523
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 19 2004
EXTENSIONS
More terms from Emeric Deutsch, Mar 10 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 May 12 18:22 EDT 2024. Contains 372494 sequences. (Running on oeis4.)