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”).

A090117
a(n) = x^2 = A090116(n)^2 is the least square that is "surrounded" by two closest primes, by prevprime(x^2) and nextprime(x^2) whose difference nextprime - prevprime = 2n.
5
4, 9, 25, 361, 144, 625, 121, 1936, 529, 900, 3249, 1681, 2500, 10404, 5776, 10816, 10000, 22201, 30625, 25281, 121104, 76176, 93025, 157609, 212521, 35721, 119025, 1121481, 190969, 672400, 693889, 1004004, 259081, 1646089, 675684, 1207801
OFFSET
1,1
LINKS
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