OFFSET
1,3
FORMULA
Generate the prime sequence with primes labeled 1 mod 4 or 3 mod 4. Add count of primes to sequence if just 3 primes occur before interruption by a prime congruent to 3 mod 4.
EXAMPLE
a(5)=305 because 305 sets of 3 primes occur below 10^5, each run interrupted by a prime congruent to 3 mod 4.
MATHEMATICA
A002145 = Join[{0}, Select[4 Range[0, 10^4] + 3, PrimeQ[#] &]];
A002144 = Select[4 Range[0, 10^4] + 1, PrimeQ[#] &];
lst = {}; Do[If[Length[s = Select[A002144, Between[{A002145[[i]], A002145[[i + 1]]}]]] == 3, AppendTo[lst, Last[s]]], {i, Length[A002145] - 1}]; Table[Count[lst, x_ /; x < 10^n], {n, 4}] (* Robert Price, Jun 09 2019 *)
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Enoch Haga, Mar 02 2004
EXTENSIONS
a(9)-a(11) from Chai Wah Wu, Mar 18 2018
STATUS
approved