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!)
A204100 Number of integers between successive twin primes, divided by 3. 4

%I #10 Jan 10 2016 14:52:56

%S 0,1,1,3,3,5,3,9,1,9,3,9,3,1,9,3,9,3,9,11,23,3,9,19,15,9,5,7,5,49,3,1,

%T 9,7,45,3,5,3,9,19,25,15,3,3,5,35,7,9,1,39,3,15,9,7,21,27,1,17,5,15,9,

%U 17,1,7,5,3,31,9,13,9,13,55,13,21,9,7,5,19

%N Number of integers between successive twin primes, divided by 3.

%H Harvey P. Dale, <a href="/A204100/b204100.txt">Table of n, a(n) for n = 1..1000</a>

%F a(n) = (A063091(n+1)- A063091(n)-3)/3 = A204099(n)/3

%e a(2) = 1 because there exists three numbers 8, 9 and 10 between (5,7) and (11,13) => a(2) = 3/3 = 1.

%p T:=array(1..100,1..2):k:=0:for n from 1 to 1000 do:p1:=ithprime(n):p2:=ithprime(n+1):if p2-p1 = 2 then k:=k+1:T[k,1]:=p1:T[k,2]:=p2:else fi:od: for p from 2 to k do:x:= T[p+1,1]- T[p,2]: printf(`%d, `,(x-1)/3):od:

%t Join[{0},Rest[(#[[2]]-#[[1]]-1)/3&/@Partition[Rest[Flatten[Select[ Partition[ Prime[Range[500]],2,1],#[[2]]-#[[1]]==2&]]],2]]] (* _Harvey P. Dale_, Jan 10 2016 *)

%Y Cf. A028334, A063091, A046933, A204099.

%K nonn

%O 1,4

%A _Michel Lagneau_, Jan 10 2012

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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)