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!)
A071695 Lesser members of twin prime pairs of form (4*k+1, 4*k+3), k > 0. 14
5, 17, 29, 41, 101, 137, 149, 197, 269, 281, 461, 521, 569, 617, 641, 809, 821, 857, 881, 1049, 1061, 1229, 1277, 1289, 1301, 1481, 1697, 1721, 1877, 1949, 1997, 2081, 2129, 2141, 2237, 2309, 2381, 2549, 2657, 2729, 2789, 2801, 2969 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding greater members: A071696(n).
Or, lesser members of twin prime pairs (A001359) which are also Pythagorean primes (A002144). Intersection of A001359 and A002144. - Zak Seidov, Apr 25 2008
A010051(a(n)) * A010051(a(n)+2) = 1. - Reinhard Zumkeller, Nov 10 2013
LINKS
Alexei Kourbatov and Marek Wolf, Predicting maximal gaps in sets of primes, arXiv preprint arXiv:1901.03785 [math.NT], 2019.
MATHEMATICA
Select[ Prime@ Range@ 1000, Mod[#, 4] == 1 && PrimeQ[# + 2] &] (* Robert G. Wilson v, Jan 22 2012 *)
PROG
(PARI) p=2; forprime(q=3, 1e4, if(q-p==2 && p%4==1, print1(p", ")); p=q) \\ Charles R Greathouse IV, Mar 20 2013
(Haskell)
a071695 n = a071695_list !! (n-1)
a071695_list = [p | p <- a002144_list, a010051' (p + 2) == 1]
-- Reinhard Zumkeller, Nov 10 2013
CROSSREFS
Sequence in context: A126193 A074965 A145475 * A242025 A027703 A075695
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 04 2002
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 March 19 09:40 EDT 2024. Contains 370981 sequences. (Running on oeis4.)