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!)
A093187 Number of consecutive runs of 3 odd nonprimes congruent to 1 mod 4 below 10^n. 5
0, 1, 10, 53, 390, 2794, 21215, 167055, 1347999, 11084015, 92708718, 786663767, 6757618852 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
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.
EXAMPLE
a(3)=10 because 10 nonprime runs of 3 occur below 10^3, each run interrupted by a nonprime congruent to 3 mod 4.
MATHEMATICA
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 *)
CROSSREFS
Sequence in context: A300607 A301349 A007035 * A208616 A219169 A292058
KEYWORD
more,nonn
AUTHOR
Enoch Haga, Mar 30 2004
EXTENSIONS
a(9)-a(13) from Bert Dobbelaere, Dec 19 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 April 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)