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!)
A064398 Numbers n such that p(n) + p(n+1) is a square and n is prime. 0
7, 61, 293, 919, 2693, 9857, 13763, 16033, 18367, 39419, 44789, 64433, 132511, 157307, 195407, 213289, 241513, 243589, 258331, 293989, 332573, 436673, 462067, 478637, 523777, 583367, 976933, 983557, 1329673, 1481099, 1582069, 1753963 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
7 is in the sequence because the seventh and eighth primes are 17 and 19. Added together, they make 36 which is the square of 6.
MATHEMATICA
p = q = 1; Do[ p = q; q = Prime[n + 1]; If[ PrimeQ[n] && IntegerQ[ Sqrt[p + q]], Print[n]], {n, 1, 10^7/4} ]
PROG
(PARI) for(n=1, 10^6, x=prime(n)+prime(n+1); if(issquare(x) && isprime(n), print(n)))
CROSSREFS
Sequence in context: A100698 A141952 A289723 * A275878 A129079 A249556
KEYWORD
nonn
AUTHOR
Jason Earls, Sep 29 2001
EXTENSIONS
More terms from Robert G. Wilson v, Sep 30 2001
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 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)