OFFSET
1,2
FORMULA
Generate the odd nonprime sequence with nonprimes labeled 1 mod 4 or 3 mod 4. Add count of nonprimes to sequence if 2 nonprimes congruent to 1 mod 4 occur before interruption of a nonprime congruent to 3 mod 4.
EXAMPLE
a(3)=33 because 33 nonprime runs of 2 occur below 10^3, each run interrupted by a nonprime congruent to 3 mod 4
MATHEMATICA
A091113 = Select[4 Range[0, 10^4] + 1, ! PrimeQ[#] &];
A091236 = Join[{0}, Select[4 Range[0, 10^4] + 3, ! PrimeQ[#] &]];
lst = {}; Do[If[Length[s = Select[A091113, Between[{A091236[[i]], A091236[[i + 1]]}]]] == 2, AppendTo[lst, Last[s]]], {i, Length[A091236] - 1}]; Table[Count[lst, x_ /; x < 10^n], {n, 4}] (* Robert Price, May 30 2019 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Enoch Haga, Mar 30 2004
EXTENSIONS
a(9)-a(13) from Bert Dobbelaere, Dec 19 2018
STATUS
approved