login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A182238
n^2 + {1,3,7} are primes.
5
2, 4, 10, 74, 146, 256, 440, 470, 584, 920, 1070, 1156, 1324, 1394, 1420, 2080, 2470, 2600, 3326, 3746, 4796, 5996, 6460, 7160, 7466, 8894, 9164, 9554, 9596, 10490, 10970, 11204, 11246, 11336, 11374, 12314, 12386, 13394, 14290, 15586, 16250, 16330, 17060
OFFSET
1,1
COMMENTS
Under Schinzel's hypothesis H, this sequence is infinite. - Charles R Greathouse IV, Apr 23 2012
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
2^2+{1,3,7}= {5,7,11} all prime, 4^2+{1,3,7}= {17,19,23} all prime.
PROG
(PARI)
{ forstep ( n=2, 10^6, 2,
ns = n * n;
if ( ! isprime( ns+1 ), next() );
if ( ! isprime( ns+3 ), next() );
if ( ! isprime( ns+7 ), next() );
print1(n, ", ");
); }
/* Joerg Arndt, Apr 22 2012 */
CROSSREFS
Intersection of A005574, A049422, A114270.
Sequence in context: A326949 A215439 A120402 * A110073 A090256 A270479
KEYWORD
nonn
AUTHOR
Zak Seidov, Apr 20 2012
STATUS
approved