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!)
A129309 a(n) = number of primes which are < c(n) and are coprime to c(n), where c(n) is the n-th composite. 1
1, 1, 3, 3, 2, 3, 4, 4, 5, 5, 6, 6, 6, 7, 8, 7, 8, 7, 7, 10, 9, 9, 9, 9, 10, 10, 10, 10, 12, 12, 12, 13, 14, 13, 13, 13, 14, 14, 14, 14, 14, 14, 16, 16, 17, 16, 15, 17, 17, 16, 18, 19, 19, 19, 19, 18, 20, 21, 20, 20, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 25, 24 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A048865(A002808(n)) = A000720(A002808(n)) - A001221(A002808(n)).
MAPLE
A002808 := proc(n) local resul, i ; i := 1 ; resul := 4 ; while i < n do resul := resul+1 ; while isprime(resul) do resul := resul+1 ; od ; i := i+1 ; od; RETURN(resul) ; end: A000720 := proc(n) numtheory[pi](n) ; end: A001221 := proc(n) nops(numtheory[factorset](n)) ; end: A048865 := proc(n) A000720(n)-A001221(n) ; end: A129309 := proc(n) A048865(A002808(n)) ; end: seq(A129309(n), n=1..80) ; # R. J. Mathar, Jun 15 2007
MATHEMATICA
A002808[n_] := Select[Range[2, 2*n], ! PrimeQ[#] &]; A048865[n_] := PrimePi[n] - PrimeNu[n]; A048865[A002808[50]] (* G. C. Greubel, May 16 2017 *)
CROSSREFS
Cf. A048865.
Sequence in context: A057853 A240088 A261735 * A268931 A360206 A003560
KEYWORD
nonn
AUTHOR
Leroy Quet, May 26 2007
EXTENSIONS
More terms from R. J. Mathar, Jun 15 2007
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 July 21 21:26 EDT 2024. Contains 374475 sequences. (Running on oeis4.)