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.

Previous Showing 21-22 of 22 results.

A054203 a(n) is the smallest start of a run of exactly n+1 consecutive primes with n (not necessarily equal) prime differences, each divisible by 6.

Original entry on oeis.org

23, 47, 251, 1889, 1741, 19471, 118801, 498259, 148531, 406951, 1820111, 2339041, 40727657, 19725473, 73451737, 232301497, 400414121, 1057859471, 489144599, 1444257673, 766319189, 24061965043, 87996684091, 21549657539, 141116164769, 140432294381, 437339303279
Offset: 1

Views

Author

Labos Elemer, May 17 2000

Keywords

Comments

This is a "modular arithmetic progression" of successive primes, modulo 6.

Examples

			For n = 1: a(1) = 23 is followed by a difference 6 to give 29, a prime.
For n = 5 a(5) = 1741 is followed by differences {6, 6, 6, 18, 6} and results in {1741, 1747, 1753, 1759, 1777, 1783} consecutive prime sequence.
For n = 10: a(10) = 406951 is prime prime is followed by {18, 12, 12, 30, 24, 12, 24, 36, 18, 12} consecutive differences pattern.
		

Crossrefs

Programs

  • PARI
    list(len) = {my(s = vector(len), v = [], prv = 2, c = 0, i, q, d); forprime(p = 3, , d = p - prv; if(d % 6, if(q > 0, i = #v; if(i > 0 && i <= len && s[i] == 0, s[i] = q; c++)); v = [], if(#v == 0, q = prv); v = concat(v, p)); prv = p; if(c == len, break)); s;} \\ Amiram Eldar, Mar 11 2025

Extensions

a(11)-a(21) from Sean A. Irvine, Jan 25 2022
a(8) corrected, a(22)-a(27) added, and name clarified by Amiram Eldar, Mar 11 2025

A293791 Prime 5-tuple 10000024493 + K * 30 for K = 0 to 4.

Original entry on oeis.org

10000024493, 10000024523, 10000024553, 10000024583, 10000024613
Offset: 1

Views

Author

Frank Ellermann, Oct 16 2017

Keywords

Comments

A052243(20) = 9843019 and A052243(21) = 9843049 are the first two primes in the smallest 5-tuple with difference 30 reported by Lander and Parkin in 1967. The much larger 5-tuple beginning with 10000024493 was reported by Jones, Lal and Blundon in the same year.
Sequence A059044 lists the quintuplets of consecutive primes in arithmetic progression (CPAP-5). A059044(9) ~ 10^8, A059044(86) ~ 10^9. a(1) ~ 10^10 might occur in that sequence around index n = 1000. - M. F. Hasler, Oct 28 2018

References

  • Yan S.Y. (2009) Number-Theoretic Preliminaries. In: Primality Testing and Integer Factorization in Public-Key Cryptography. Advances in Information Security, vol 11. Springer, Boston, MA.

Crossrefs

Previous Showing 21-22 of 22 results.