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

 


Number of distinct even prime indices of n.
9

%I #21 Oct 06 2023 04:55:51

%S 0,0,1,0,0,1,1,0,1,0,0,1,1,1,1,0,0,1,1,0,2,0,0,1,0,1,1,1,1,1,0,0,1,0,

%T 1,1,1,1,2,0,0,2,1,0,1,0,0,1,1,0,1,1,1,1,0,1,2,1,0,1,1,0,2,0,1,1,0,0,

%U 1,1,1,1,0,1,1,1,1,2,1,0,1,0,0,2,0,1,2

%N Number of distinct even prime indices of n.

%C A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.

%C If x and y are coprime then a(x*y) = a(x) + a(y). - _Robert Israel_, Mar 24 2019

%H Robert Israel, <a href="/A324967/b324967.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = A001221(n) - A324966(n). - _Robert Israel_, Mar 24 2019

%F G.f.: Sum_{k>=1} x^prime(2*k) / (1 - x^prime(2*k)). - _Ilya Gutkovskiy_, Feb 12 2020

%F Additive with a(p^e) = 1 if primepi(p) is even and 0 otherwise. - _Amiram Eldar_, Oct 06 2023

%e 180180 has prime indices {1,1,2,2,3,4,5,6}, so a(180180) = 3.

%p f:= proc(n) nops(select(type,map(numtheory:-pi,numtheory:-factorset(n)),even)) end proc:

%p map(f, [$1..100]); # _Robert Israel_, Mar 24 2019

%t Table[Count[If[n==1,{},FactorInteger[n]],{_?(EvenQ[PrimePi[#]]&),_}],{n,100}]

%o (PARI) a(n) = my(f=factor(n)[,1]); sum(k=1, #f, !(primepi(f[k]) % 2)); \\ _Michel Marcus_, Mar 22 2019

%Y Cf. A000720, A001221, A003963, A005087, A066208, A112798, A257991, A257992, A289509, A324929, A324966.

%K nonn,easy

%O 1,21

%A _Gus Wiseman_, Mar 21 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 23:55 EDT 2024. Contains 376078 sequences. (Running on oeis4.)