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!)
A122565 Twin primes of form 4k+1, 4k+3. 17
5, 7, 17, 19, 29, 31, 41, 43, 101, 103, 137, 139, 149, 151, 197, 199, 269, 271, 281, 283, 461, 463, 521, 523, 569, 571, 617, 619, 641, 643, 809, 811, 821, 823, 857, 859, 881, 883, 1049, 1051, 1061, 1063, 1229, 1231, 1277, 1279, 1289, 1291, 1301, 1303, 1481 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Twin primes with Hamming distance 1 between them. - Vladimir Shevelev, Jan 29 2012
LINKS
EXAMPLE
a(3) = 17 = 4*4 + 1, a(4) = 19 = 4*4 + 3.
MAPLE
i:=1:for k from 1 to 600 do if isprime(4*k+1) and isprime(4*k+3) then a[i]:=4*k+1:a[i+1]:=4*k+3: i:=i+2 fi od: seq(a[n], n=1..i-1);
MATHEMATICA
Flatten[Select[Table[4k+{1, 3}, {k, 400}], And@@PrimeQ[#] &]] (* Jayanta Basu, May 26 2013 *)
CROSSREFS
Sequence in context: A163633 A092242 A003630 * A369105 A247607 A079016
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 29 00:08 EDT 2024. Contains 372097 sequences. (Running on oeis4.)