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!)
A122564 Twin primes of form 4k-1, 4k+1. 3
3, 5, 11, 13, 59, 61, 71, 73, 107, 109, 179, 181, 191, 193, 227, 229, 239, 241, 311, 313, 347, 349, 419, 421, 431, 433, 599, 601, 659, 661, 827, 829, 1019, 1021, 1031, 1033, 1091, 1093, 1151, 1153, 1319, 1321, 1427, 1429, 1451, 1453, 1487, 1489, 1607, 1609 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3)=11=4*3-1, a(4)=13=4*3+1
MAPLE
i:=1:for k from 1 to 600 do if isprime(4*k-1) and isprime(4*k+1) then a[i]:=4*k-1:a[i+1]:=4*k+1: i:=i+2 fi od: seq(a[n], n=1..i-1);
MATHEMATICA
Select[Partition[Prime[Range[300]], 2, 1], #[[2]]-#[[1]]==2&&Divisible[ Mean[ #], 4]&]//Flatten (* Harvey P. Dale, May 17 2021 *)
CROSSREFS
Cf. A001097.
Sequence in context: A359303 A006794 A032457 * A162876 A162875 A166564
KEYWORD
nonn
AUTHOR
Miklos Kristof, Sep 21 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 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)