login
A129783
Conjectured numbers n with the property that there exist two consecutive primes p and q such that pq + n is a square.
4
1, 3, 4, 9, 10, 14, 16, 19, 21, 23, 25, 26, 29, 30, 34, 35, 36, 38, 43, 44, 46, 47, 49, 53, 58, 62, 64, 65, 66, 67, 68, 75, 77, 78, 81, 82, 83, 85, 86, 92, 94, 95, 100, 103, 106, 109, 110, 113, 115, 117, 118, 119, 121, 122, 125, 129, 134, 138, 139, 140, 143, 144, 146, 148
OFFSET
1,2
COMMENTS
Complement of A129816. [From Omar E. Pol, Dec 26 2008]
LINKS
PROG
(PARI) primesq(n, m) = \square of the form prime(x)*prime(x+1) + k {local(c, k, x, p1, p2, j); c=0; for(k=1, m, for(x=1, n, p1=prime(x); p2=(prime(x+1)); y=p1*p2+k; if(issquare(y), c++; print1(k", "); break; ) ) ); c; }
CROSSREFS
Cf. A129816. [From Omar E. Pol, Dec 26 2008]
Sequence in context: A137709 A275538 A090120 * A301919 A093513 A047230
KEYWORD
easy,nonn,obsc
AUTHOR
Cino Hilliard, May 18 2007
EXTENSIONS
I don't know how many of the missing terms have been proved to be missing. Has it been proved that 2 is missing? - N. J. A. Sloane, May 20 2007
STATUS
approved