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!)
A130112 Primes prime(n) such that 10*prime(n)+prime(n+2) is not prime. 0
2, 19, 23, 29, 31, 37, 43, 47, 53, 59, 61, 71, 73, 79, 83, 97, 103, 107, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 191, 197, 211, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 293, 307, 311, 317, 331, 349, 353, 359, 373, 379, 383, 389 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(7)=43 because 10*41+53=483 and 483=3*7*23 is not prime,
a(8)=47 because 10*47+59=529 and 529=23^2 is not prime,
a(9)=53 because 10*53+61=591 and 591=3*197 is not prime, ...
MAPLE
ts_p6_02:=proc(n) local a, b, i, ans; ans := [ ]: for i from 1 to n do a := 10*ithprime(i)+ithprime(i+2): if (isprime(a)=false) then ans := [ op(ans), ithprime(i) ]: fi od; RETURN(ans) end: ts_p6_02(300);
MATHEMATICA
Transpose[Select[Partition[Prime[Range[200]], 3, 1], !PrimeQ[10First[#]+ Last[#]]&]][[1]] (* Harvey P. Dale, Jan 04 2012 *)
CROSSREFS
Cf. A129900.
Sequence in context: A042247 A041451 A268492 * A019348 A155025 A191068
KEYWORD
nonn
AUTHOR
Jani Melik, Aug 01 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 July 29 12:56 EDT 2024. Contains 374734 sequences. (Running on oeis4.)