OFFSET
1,1
COMMENTS
All terms are == {7, 13} mod 30.
Subsequence of A247275.
MATHEMATICA
Select[Prime[Range[35000]], AllTrue[#+{4, 16, 36, 64, 100, 144, 196, 256, 324, 400, 484, 576, 676}, PrimeQ]&] (* The program generates the first two terms of the sequence. To generate a(3) and a(4), increase the Range constant to 67*10^10 but the program will take a very long time to run. *) (* Harvey P. Dale, Mar 05 2025 *)
PROG
(PARI)
forprime(p=1, 10^12, c=0; for(i=1, 13, if(ispseudoprime(p+(2*i)^2), c++); if(!ispseudoprime(p+(2*i)^2), break)); if(c==13, print1(p, ", "))) \\ Derek Orr, Sep 11 2014
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Zak Seidov, Sep 11 2014
STATUS
approved
