OFFSET
1,1
COMMENTS
Members of a pair (a, b) of primes such that a < b and the distances from a and b to the nearest square above a (or below b) are equal.
The only prime of the form n^2 + 1 (A002496) in the sequence is 5.
Is this sequence infinite?
FORMULA
A prime p is in the sequence if and only if 2*A053187(p)-p is prime.
EXAMPLE
2^2-1=3, 2^2+1=5, both prime.
8^2-3=61, 8^2+3=67, both prime.
MAPLE
g:= proc(t, m) if isprime(m+t) and isprime(m-t) then (m+t, m-t) else NULL fi end proc:
`union`(seq(map(g, {$1..n-1}, n^2), n=2..100));
# if using Maple 11 or earlier, uncomment the next line
# sort(convert(%, list));
# Robert Israel, Oct 31 2014
PROG
(Magma) lst:=[]; for m in [1..28] do r:=m*(m+1)+1; s:=(m+1)^2; for a in [r..s-1] do if IsPrime(a) then b:=2*s-a; if IsPrime(b) then Append(~lst, a); Append(~lst, b); end if; end if; end for; end for; Sort(lst);
(PARI) for(n=1, 859, if(issquare(n), x=ps=n; until(issquare(x), x++); ns=x); if(isprime(n), if(n-ps<ns-n, c=2*ps-n, c=2*ns-n); if(isprime(c), print1(n, ", "))));
CROSSREFS
KEYWORD
nonn
AUTHOR
Arkadiusz Wesolowski, Oct 20 2014
STATUS
approved
