This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A093188 #14 Jun 01 2019 09:31:16 %S A093188 0,0,5,49,356,2678,21085,166814,1345812,11080939,92699035,786630700, %T A093188 6757485506 %N A093188 Number of consecutive runs of 3 odd nonprimes congruent to 3 mod 4 below 10^n. %F A093188 Generate the odd nonprime sequence with nonprimes labeled 1 mod 4 or 3 mod 4. Add count of nonprimes to sequence if 3 nonprimes congruent to 3 mod 4 occur before interruption of a nonprime congruent to 1 mod 4 %e A093188 a(3)=5 because 5 nonprime runs of 3 occur below 10^3, each run interrupted by a nonprime congruent to 1 mod 4. %t A093188 A091113 = Select[4 Range[0, 10^4] + 1, ! PrimeQ[#] &]; %t A093188 A091236 = Select[4 Range[0, 10^4] + 3, ! PrimeQ[#] &]; %t A093188 lst = {}; Do[If[Length[s = Select[A091236, Between[{A091113[[i]], A091113[[i + 1]]}]]] == 3, AppendTo[lst, Last[s]]], {i, Length[A091113] - 1}]; Table[Count[lst, x_ /; x < 10^n], {n, 4}] (* _Robert Price_, May 31 2019 *) %Y A093188 Cf. A093183, A093184, A093185, A093186, A093187, A093397, A093398, A093399, A092643. %K A093188 more,nonn %O A093188 1,3 %A A093188 _Enoch Haga_, Mar 30 2004 %E A093188 a(9)-a(13) from _Bert Dobbelaere_, Dec 19 2018