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!)
A154674 Averages of twin prime pairs k such that k*11 and k/11 are squares. 5
990000, 1940400, 2227500, 6187500, 35640000, 54212400, 57182400, 74933100, 159677100, 164745900, 167310000, 194040000, 289485900, 380318400, 424205100, 496742400, 664101900, 684773100, 902919600, 976100400, 982327500, 1007433900 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 9900*A154774(n)^2. - M. F. Hasler, Jan 15 2009
MATHEMATICA
lst={}; Do[If[PrimeQ[n-1]&&PrimeQ[n+1], s=(n*11)^(1/2); If[Floor[s]==s, AppendTo[lst, n]]], {n, 6, 11!, 6}]; lst...and/or... lst={}; Do[If[PrimeQ[n-1]&&PrimeQ[n+1], s=(n/11)^(1/2); If[Floor[s]==s, AppendTo[lst, n]]], {n, 6, 11!, 6}]; lst
Select[11*Range[10^4]^2, And @@ PrimeQ[# + {-1, 1}] &] (* Amiram Eldar, Dec 25 2019 *)
PROG
(PARI) for(i=1, 999, isprime(9900*i^2+1) && isprime(9900*i^2-1) && print1(9900*i^2", ")) \\ M. F. Hasler, Jan 15 2009
CROSSREFS
Sequence in context: A328287 A083395 A106782 * A236034 A055617 A055618
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from M. F. Hasler, Jan 15 2009
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 May 2 11:49 EDT 2024. Contains 372196 sequences. (Running on oeis4.)