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!)
A092646 Number of consecutive prime runs of just 4 primes congruent to 3 mod 4 below 10^n. 2
0, 0, 1, 15, 111, 1013, 8963, 78496, 703783, 6388533, 58446494 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
Generate the prime sequence with primes labeled 1 mod 4 or 3 mod 4. Add count of primes to sequence if just 4 primes occur before interruption by a prime congruent to 1 mod 4.
EXAMPLE
a(5)=111 because 111 sets of 4 primes occur below 10^5, each run interrupted by a prime congruent to 1 mod 4.
MATHEMATICA
p1 = p3 = 0; p = 15; s = Mod[{2, 3, 5, 7, 11, 13}, 4]; Do[ While[p < 10^n, If[s == {3, 1, 1, 1, 1, 3}, p1++]; If[s == {1, 3, 3, 3, 3, 1}, p3++]; p = NextPrime@ p; s = Join[ Take[s, -5], {Mod[p, 4]}]]; Print[{p1, p3}], {n, 2, 9}] (* Robert G. Wilson v, Sep 30 2011 *)
CROSSREFS
Sequence in context: A290361 A254869 A034184 * A222117 A105051 A105040
KEYWORD
more,nonn
AUTHOR
Enoch Haga, Mar 02 2004
EXTENSIONS
a(11) from Chai Wah Wu, Mar 18 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 4 12:15 EDT 2024. Contains 372243 sequences. (Running on oeis4.)