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!)
A168141 a(n) = pi(n + 1) - pi(n - 2), where pi is the prime counting function. 1
1, 2, 2, 2, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture: a(n) = 2 for infinitely many n. This is equivalent to the twin prime conjecture. - Andrew Slattery, Apr 26 2020
LINKS
Eric Weisstein's World of Mathematics, Twin Prime Conjecture
Wikipedia, Twin prime
FORMULA
From Alois P. Heinz, Apr 28 2020: (Start)
a(n) = 2 <=> n in { 2,3 } union { A014574 }.
a(n) = 0 <=> { A079364 }. (End)
MAPLE
A168141 := proc(n) numtheory[pi](n+1)-numtheory[pi](n-2) ; end proc: seq(A168141(n), n=1..120) ; # R. J. Mathar, Nov 19 2009
# second Maple program:
a:= n-> add(`if`(isprime(n+i), 1, 0), i=-1..1):
seq(a(n), n=1..120); # Alois P. Heinz, Apr 28 2020
MATHEMATICA
Table[PrimePi[n + 1] - PrimePi[n - 2], {n, 100}] (* Wesley Ivan Hurt, Apr 26 2020 *)
PROG
(PARI) a(n) = primepi(n+1) - primepi(n-2); \\ Michel Marcus, Apr 27 2020
CROSSREFS
Sequence in context: A212119 A096831 A191516 * A232654 A105971 A280314
KEYWORD
nonn
AUTHOR
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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)