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!)
A144620 Numbers k such that k and 19*k + 8 are both prime. 2
5, 17, 41, 59, 89, 167, 191, 239, 269, 281, 359, 449, 479, 491, 509, 521, 587, 617, 647, 701, 719, 821, 881, 911, 929, 971, 1031, 1181, 1217, 1259, 1289, 1307, 1361, 1367, 1559, 1601, 1697, 1709, 1721, 1787, 1877, 1889, 1907, 1931, 1949, 1997, 2039, 2129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For n=5, 19*5 + 8 = 103;
for n=269, 19*269 + 8 = 5119.
MAPLE
a := proc (n) if isprime(n) = true and isprime(19*n+8) = true then n else end if end proc: seq(a(n), n = 1 .. 2300); # Emeric Deutsch, Jan 27 2009
MATHEMATICA
Select[Prime[Range[400]], PrimeQ[#] &&PrimeQ[19#+8] &] (* Vincenzo Librandi, Aug 30 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(2500)|IsPrime(19*p+8)] // Vincenzo Librandi, Aug 30 2012
CROSSREFS
Sequence in context: A332689 A342320 A341759 * A217622 A269728 A091864
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 15 2009
EXTENSIONS
Extended by Emeric Deutsch, Jan 27 2009
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 May 4 12:37 EDT 2024. Contains 372243 sequences. (Running on oeis4.)