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!)
A175839 Smallest runs of n*2-1 consecutive composites. 0
4, 8, 9, 10, 24, 25, 26, 27, 28, 90, 91, 92, 93, 94, 95, 96, 114, 115, 116, 117, 118, 119, 120, 121, 122, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Even lengths of runs of composites are omitted, as nontrivial runs always have odd lengths (see A046933).
Run 5 (starting at 114) has 13 consecutive composites and is repeated in runs 6 and 7. Run 8 starts at 524 = A008950(6).
LINKS
Wikipedia, Composite number
EXAMPLE
Run 1 has length 1; the first composite is 4.
Run 2 has length 3; the first three consecutive composites are 8, 9, and 10.
Run 3 has length 5; the first five consecutive composites are 24, 25, 26, 27, and 28.
4;
8, 9, 10;
24, 25, 26, 27, 28;
90, 91, 92, 93, 94, 95, 96;
114, 115, 116, 117, 118, 119, 120, 121, 122;
114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124;
114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126;
PROG
(Python)
from sympy import isprime
out = []
run = 1
for n in range(4, 10000):
isrun = True
for o in range(run): isrun *= not isprime(n + o - run)
if isrun:
for o in range(run): out.append(n + o - run)
run += 2
print(out)
CROSSREFS
Sequence in context: A073042 A094349 A118715 * A226085 A104623 A228653
KEYWORD
easy,nonn
AUTHOR
Grant Garcia, Sep 20 2010
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)