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!)
A139789 Numbers of primes < n-th-prime such that prime(n) + 4 is prime. 2

%I #10 Jan 25 2019 18:57:18

%S 0,0,1,1,2,2,3,3,4,4,4,4,5,5,6,6,6,6,6,7,7,7,8,8,8,9,9,10,10,11,11,12,

%T 12,12,12,12,12,12,13,13,13,13,13,13,14,14,14,14,15,15,16,16,16,16,16,

%U 16,16,16,16,17,17,17,17,18,18,19,19,19,19,19,20,20,20,20,20,21,21,21

%N Numbers of primes < n-th-prime such that prime(n) + 4 is prime.

%p A139789 := proc(n) local a,i; a := 0 ; for i from 1 to n-1 do if isprime(ithprime(i)+4) then a :=a +1 ; fi; od: a ; end: for n from 1 to 100 do printf("%d,",A139789(n)) ; od: # _R. J. Mathar_, Oct 05 2008

%t Join[{0},Accumulate[Table[If[PrimeQ[n+4],1,0],{n,Prime[Range[80]]}]]] (* _Harvey P. Dale_, Jan 25 2019 *)

%Y Cf. A082462.

%K nonn

%O 1,5

%A _Giovanni Teofilatto_, May 21 2008

%E 0 added in front, some 6's added and extended by _R. J. Mathar_, Oct 05 2008

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 21 12:47 EDT 2024. Contains 372736 sequences. (Running on oeis4.)