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!)
A126193 Lesser of twin primes (A001359) of the form p = k^2+s such that q = k^4+s is also a lesser of twin primes, q > p. 1
5, 17, 29, 41, 59, 71, 107, 137, 179, 191, 197, 227, 239, 269, 281, 311, 347, 419, 431, 461, 569, 599, 617, 641, 659, 809, 821, 827, 857, 881, 1019, 1049, 1061, 1091, 1151, 1229, 1277, 1289, 1301, 1319, 1427, 1451, 1481, 1487, 1607, 1619, 1667, 1697, 1721 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
p = q-k^4+k^2 where p and q are lesser of twin primes and p < q.
May be connected with the twin prime conjecture (see link).
LINKS
Eric Weisstein's World of Mathematics, Twin Prime Conjecture
EXAMPLE
5 = 2^2+1 and 17 = 2^4+1; 5 and 17 are lesser of twin primes;
41 = 4^2+25 and 281 = 4^4+25; 41 and 281 are lesser of twin primes.
PROG
(PARI) {m=42; v=[]; for(k=2, m, for(s=1, (m+1)^2-1, if((p=k^2+s)<m^2&&isprime(p)&&isprime(p+2)&&(q=k^4+s)>p&&isprime(q)&&isprime(q+2), v=concat(v, p)))); v=listsort(List(v), 1); for(j=1, #v, print1(v[j], ", "))} /* Klaus Brockhaus, Mar 09 2007 */
CROSSREFS
Sequence in context: A068230 A040117 A145471 * A074965 A145475 A071695
KEYWORD
easy,nonn
AUTHOR
Tomas Xordan, Mar 07 2007
EXTENSIONS
Edited and checked by Klaus Brockhaus, Mar 09 2007
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)