login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157495 The smallest prime difference between prime(n) and any smaller square. 1
2, 2, 5, 3, 2, 13, 13, 3, 7, 13, 31, 37, 5, 7, 11, 17, 23, 61, 3, 7, 37, 43, 2, 53, 61, 37, 3, 7, 73, 13, 127, 31, 37, 103, 5, 7, 13, 19, 23, 29, 79, 37, 47, 157, 53, 3, 67, 79, 2, 193, 37, 43, 97, 107, 61, 7, 13, 127, 241, 137, 139, 37, 163, 167, 277, 61, 7, 13, 23, 313, 29, 103 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If the only preceding square k such that p-k^2 is prime is 0, then we generate sequence A065377.
LINKS
EXAMPLE
The 7th prime is 17. The preceding squares of 17 are 16,9,4,1,0. The differences are 17-16=1, 17-9=8, 17-4=13, 17-1=16 and 17-0=17. Then 4 is the first preceding square of 17 that can be subtracted from 17 to get a prime. So a(7)=13. If we reduce the prime(6)=13 in this fashion, we have 13-9=4, 13-1=12, 13-0=13. This shows that 0 is the first square that can be subtract from 13 to get a prime number. So a(6)=13.
MAPLE
A157495 := proc(n)
local p, s ;
p := ithprime(n) ;
s := floor(sqrt(p)) ;
while not isprime(p-s^2) do
s := s-1;
end do;
p-s^2 ;
end proc:
seq(A157495(n), n=1..130) ; # R. J. Mathar, Sep 07 2016
MATHEMATICA
Table[SelectFirst[Reverse[p-Range[0, Floor[Sqrt[p]]]^2], PrimeQ], {p, Prime[ Range[80]]}] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 23 2017 *)
PROG
(PARI) g(n)= c=0; forprime(x=2, n, for(k=1, n^2, if(issquare(abs(x-k)) && isprime(k), print1(k", "); c++; break))); c
CROSSREFS
Cf. A065377.
Sequence in context: A293833 A146316 A258803 * A308143 A308515 A361328
KEYWORD
nonn
AUTHOR
Cino Hilliard, Mar 01 2009
EXTENSIONS
NAME rephrased for clarity. - R. J. Mathar, Sep 08 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)