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.

A202282 Initial prime in prime decuplets (p+0,2,6,8,12,18,20,26,30,32) preceding the maximal gaps in A202281.

This page as a plain text file.
%I A202282 #27 Feb 16 2025 08:33:16
%S A202282 11,33081664151,83122625471,294920291201,730121110331,1291458592421,
%T A202282 4700094892301,6218504101541,7908189600581,10527733922591,
%U A202282 21939572224301,23960929422161,30491978649941,46950720918371,84254447788781,118565337622001,124788318636251,235474768767851
%N A202282 Initial prime in prime decuplets (p+0,2,6,8,12,18,20,26,30,32) preceding the maximal gaps in A202281.
%C A202282 Prime decuplets (p+0,2,6,8,12,18,20,26,30,32) are one of the two types of densest permissible constellations of 10 primes. Maximal gaps between decuplets of this type are listed in A202281; see more comments there.
%H A202282 Norman Luhn, <a href="/A202282/b202282.txt">Table of n, a(n) for n = 1..50</a> (terms 1..33 from Dana Jacobsen).
%H A202282 Tony Forbes and Norman Luhn, <a href="http://www.pzktupel.de/ktuplets.htm">Prime k-tuplets</a>
%H A202282 G. H. Hardy and J. E. Littlewood, <a href="http://dx.doi.org/10.1007/BF02403921">Some Problems of 'Partitio Numerorum.' III. On the Expression of a Number as a Sum of Primes</a>, Acta Math. 44, 1-70, 1923.
%H A202282 Alexei Kourbatov, <a href="http://www.javascripter.net/math/primes/maximalgapsbetweenktuples.htm">Maximal gaps between prime k-tuples</a>
%H A202282 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/k-TupleConjecture.html">k-Tuple Conjecture</a>
%e A202282 The first four gaps (after the decuplets starting at p=11, 33081664151, 83122625471, 294920291201) form an increasing sequence, with the size of each gap setting a new record. Therefore these values of p are in the sequence, as a(1), a(2), a(3), a(4). The next gap is not a record, so the respective initial prime is not in the sequence.
%o A202282 (Perl) use ntheory ":all"; my($i,$l,$max)=(-1,0,0); for (sieve_prime_cluster(1,1e13,2,6,8,12,18,20,26,30,32)) { my $gap=$_-$l; if ($gap>$max) { say "$i $l" if ++$i > 0; $max=$gap; } $l=$_; } # _Dana Jacobsen_, Oct 09 2015
%Y A202282 Cf. A027569 (prime decuplets p+0,2,6,8,12,18,20,26,30,32), A202281, A202361, A202362.
%K A202282 nonn
%O A202282 1,1
%A A202282 _Alexei Kourbatov_, Dec 15 2011