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!)
A145992 Run lengths of 2 or more consecutive primes of the form 4k+3. 5
2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 7, 2, 2, 2, 2, 3, 2, 2, 5, 2, 2, 2, 2, 2, 3, 2, 3, 2, 2, 5, 5, 2, 2, 4, 2, 2, 3, 2, 2, 3, 4, 2, 2, 3, 3, 2, 3, 2, 3, 2, 2, 2, 2, 2, 3, 3, 2, 3, 3, 2, 4, 2, 2, 3, 2, 2, 3, 2, 2, 2, 2, 4, 2, 2, 3, 2, 3, 3, 2, 3, 4, 2, 2, 2, 4, 2, 2, 3, 2, 2, 2, 2, 2, 3, 2, 3, 2, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
Enoch Haga, Exploring Primes on Your PC and the Internet, 1994-2007. Pp. 30-31. ISBN 978-1-885794-24-6
LINKS
EXAMPLE
a(1) = 2 counts the two 3's from A039702(4) to A039072(5).
a(9) = 4 counts the four 3's from A039702(46) to A039072(49).
a(14)= 7 counts the seven 4's from A039702(90) to A039072(96).
MAPLE
A145992 := proc()
local m, p, r, i ;
m := 3 ;
p := 2 ;
r := 0 ;
for i from 2 to 1000 do
if modp(p, 4) = m then
r := r+1 ;
else
if r > 1 then
printf("%d, ", r) ;
end if;
r := 0;
end if;
p := nextprime(p) ;
end do:
end proc:
A145992() ; # R. J. Mathar, Aug 29 2018
MATHEMATICA
Most[Length /@ Select[ SplitBy[ Prime@ Range@ 780, Mod[#, 4] &], Mod[#[[1]], 4] == 3 && Length[#] > 1 &]] (* Giovanni Resta, Aug 29 2018 *)
Length/@Select[Split[Table[If[Mod[n, 4]==3, 1, 0], {n, Prime[Range[ 1000]]}]], FreeQ[ #, 0]&]/.(1->Nothing) (* Harvey P. Dale, Jul 27 2020 *)
CROSSREFS
Sequence in context: A277090 A103376 A189819 * A045818 A064128 A248774
KEYWORD
easy,nonn
AUTHOR
Enoch Haga, Oct 26 2008
EXTENSIONS
Corrected by R. J. Mathar, Aug 29 2018
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 May 13 14:47 EDT 2024. Contains 372519 sequences. (Running on oeis4.)