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!)
A121834 Primes p of the form 4*n^2 + 1 such that 4*p^2+1 is also prime. 2
5, 37, 677, 1297, 2917, 8837, 13457, 50177, 147457, 156817, 246017, 341057, 414737, 746497, 1136357, 1726597, 1833317, 2119937, 2802277, 2808977, 3013697, 3549457, 3865157, 3896677, 4104677, 4384837, 5354597, 5410277, 5779217, 6031937, 6635777, 7001317 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Intersection of A001912 and A121326. Except for the first term all other terms are == 7 (mod 10). Also all the primes 4*p^2+1 are == 7 (mod 10). - Zak Seidov, Mar 05 2015
LINKS
MATHEMATICA
fpQ[n_]:=PrimeQ[n]&&PrimeQ[4n^2+1]; Select[4Range[2000]^2+1, fpQ] (* Harvey P. Dale, Nov 07 2016 *)
PROG
(PARI) isA121834(n)={ if( (n-1) %4, return(0) ; ) ; if( issquare((n-1)/4), if( isprime(4*n^2+1), return(1), return(0) ), return(0) ; ) ; } { for(i=1, 1000000, p=prime(i) ; if( isA121834(p), print1(p, ", ") ; ) ; ) ; } /* R. J. Mathar, Sep 01 2006*/
CROSSREFS
Sequence in context: A246534 A095957 A354862 * A215233 A083846 A358887
KEYWORD
nonn
AUTHOR
Zak Seidov, Aug 28 2006
EXTENSIONS
More terms from R. J. Mathar, Sep 01 2006
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)