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!)
A037072 Squares which are the sum of twin prime pairs. 5
36, 144, 1764, 2304, 5184, 7056, 8100, 30276, 41616, 69696, 93636, 138384, 166464, 207936, 224676, 298116, 352836, 360000, 412164, 562500, 725904, 777924, 876096, 944784, 956484, 1077444, 1299600, 1468944, 1617984, 1920996, 2160900, 2286144, 2304324, 2509056 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There are exactly 5^2 squares less than or equal to 1000^2 which are the sum of twin prime pairs.
LINKS
FORMULA
a(n) = 2 * A154670(n) = A152786(n)^2. - Amiram Eldar, Jan 01 2020
EXAMPLE
36 (square) = 6^2 = 17 + 19 (twin prime pair).
MATHEMATICA
lst={}; Do[p=n^2; If[PrimeQ[p/2-1]&&PrimeQ[p/2+1], AppendTo[lst, p]], {n, 0, 7!, 2}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 25 2008 *)
PROG
(Magma) [k^2:k in [2..1700 by 2]| IsPrime(k^2 div 2 -1) and IsPrime(k^2 div 2 +1)]; // Marius A. Burtea, Jan 01 2020
CROSSREFS
Sequence in context: A299854 A154711 A162992 * A370453 A076432 A003848
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Amiram Eldar, Jan 01 2020
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 03:33 EDT 2024. Contains 371767 sequences. (Running on oeis4.)