OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..57
EXAMPLE
n=5: a(5)=144, primes closest to 144 are {139,149} of which the difference 149 - 139 = 10 = 2n and 144 is the smallest square with this property;
n=1: a(1)=4, 2^2 = 4 is surrounded by {3,5} closest primes with difference 5 - 3 = 2 = 2n.
MATHEMATICA
de[x_ ]:= Prime[PrimePi[x]+1]-Prime[PrimePi[x]] t=Table[de[w^2], {w, 1, 50000}]; q=Table[Min[Flatten[Position[t, 2*j]]]^2, {j, 1, 100}]
Table[Min[Transpose[Select[{#, NextPrime[#]-NextPrime[#, -1]}&/@ (Range[ 2, 5000]^2), Last[#]==2n&]][[1]]], {n, 40}] (* Harvey P. Dale, Sep 04 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jan 09 2004
STATUS
approved