cp's OEIS Frontend

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.

A093187 Number of consecutive runs of 3 odd nonprimes congruent to 1 mod 4 below 10^n.

This page as a plain text file.
%I A093187 #15 Dec 19 2018 14:43:09
%S A093187 0,1,10,53,390,2794,21215,167055,1347999,11084015,92708718,786663767,
%T A093187 6757618852
%N A093187 Number of consecutive runs of 3 odd nonprimes congruent to 1 mod 4 below 10^n.
%F A093187 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 1 mod 4 occur before interruption of a nonprime congruent to 3 mod 4.
%e A093187 a(3)=10 because 10 nonprime runs of 3 occur below 10^3, each run interrupted by a nonprime congruent to 3 mod 4.
%t A093187 Accumulate@ Table[Length@ SequencePosition[Range[10^n + 1, 10^(n + 1) - 1, 2] /. {p_ /; PrimeQ@ p -> Nothing, k_ /; Mod[k, 4] == 1 -> 1, k_ /; Mod[k, 4] == 3 -> 3}, {1, 1, 1, 3}], {n, 0, 6}] (* _Michael De Vlieger_, Jan 02 2017 *)
%Y A093187 Cf. A092642, A093183, A093184, A093185, A093186, A093188, A093397, A093398, A093399.
%K A093187 more,nonn
%O A093187 1,3
%A A093187 _Enoch Haga_, Mar 30 2004
%E A093187 a(9)-a(13) from _Bert Dobbelaere_, Dec 19 2018