OFFSET
1,2
COMMENTS
a(n) is the first argument providing 10 "polynomially consecutive" primes with respect to the polynomial x^2 - 79*x + 1601 described by Escott in 1899.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..145
E. B. Escott, Réponse 1133, Formule d'Euler x^2 + x + 41 et formules analogues, L'Intermédiaire des mathématiciens, Vol. 6 (1899), pp. 10-11.
EXAMPLE
k = 106 provides a chain of 10 "polynomially consecutive" primes as follows: {4463, 4597, 4733, 4871, 5011, 5153, 5297, 5443, 5591, 5741}.
MATHEMATICA
Position[Times @@@ Partition[Table[Boole@PrimeQ[k^2 - 79*k + 1601], {k, 1, 1000}], 10, 1], 1] // Flatten (* Amiram Eldar, Sep 27 2024 *)
PROG
(PARI) isp(x) = isprime(x^2 - 79*x + 1601);
lista(kmax) = {my(v = vector(10, k, isp(k))); for(k = 11, kmax, if(vecprod(v) == 1, print1(k - 10, ", ")); v = concat(vecextract(v, "^1"), isp(k))); } \\ Amiram Eldar, Sep 27 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Dec 29 2003
EXTENSIONS
Data corrected by Amiram Eldar, Sep 27 2024
STATUS
approved