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!)
A054691 New records in A054690 (start of n consecutive non-twin primes). 3
7, 19, 43, 73, 349, 661, 8629, 13399, 14629, 24421, 62299, 187909, 688453, 850351, 17382481, 30752233, 32822371, 136283431, 248641039, 255949951, 390817729, 698542489, 1256735191, 1535220499, 1899797989, 2466641071, 4289385523, 24215097499, 42441715489, 43725662623 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Has many terms in common with A036061, but neither of the two is a subsequence of the other one. - M. F. Hasler, May 07 2022
LINKS
PROG
(Python)
from sympy import nextprime
from itertools import count, islice
def agen(): # generator of terms
p, q, n, rl, argp = 2, 3, 1, 0, 2
for k in count(1):
if q - p >= 4: rl += 1
else:
if rl >= n: yield argp; n = rl + 1
rl, argp = 0, q
p, q = q, nextprime(q)
print(list(islice(agen(), 14))) # Michael S. Branicky, Aug 23 2022
CROSSREFS
Cf. A036061.
Sequence in context: A054690 A259486 A298034 * A139828 A247905 A048488
KEYWORD
nonn
AUTHOR
Jeff Burch, Apr 19 2000
EXTENSIONS
a(10)-a(25) from Sean A. Irvine, Feb 17 2022
Offset changed and a(26)-a(29) from Michael S. Branicky, Aug 23 2022
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)