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!)
A258214 Primes formed by concatenating p^2 with q, where p, q are consecutive primes. 1
43, 257, 12113, 84131, 96137, 168143, 372167, 32041181, 120409349, 139129379, 292681547, 410881643, 516961727, 528529733, 863041937, 966289991, 10629611033, 10670891039, 11902811093, 16307291279, 21112091459, 25058891597, 29618411723, 31933691789, 35006411873 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All the terms in this sequence, except a(1), are congruent to 2 (mod 3).
LINKS
EXAMPLE
a(2) = 257 is prime formed by concatenation of (5^2) = 25 with 7.
a(3) = 12113 is prime formed by concatenation of (11^2) = 121 with 13.
MATHEMATICA
Select[Table[p = Prime[n]; FromDigits[Join[Flatten[ IntegerDigits[{p^2, NextPrime[p]}]]]], {n, 500}], PrimeQ]
Select[#[[1]]^2*10^IntegerLength[#[[2]]]+#[[2]]&/@Partition[Prime[ Range[ 300]], 2, 1], PrimeQ] (* Harvey P. Dale, Dec 05 2016 *)
PROG
(PARI) forprime(p = 1, 5000, k=eval(concat( Str(p^2), Str(nextprime(p+1)) )); if(isprime(k), print1(k, ", ")))
(Magma) [m: n in [1..300] | IsPrime(m) where m is Seqint(Intseq(NthPrime(n+1)) cat Intseq(NthPrime(n)^2))]; // Vincenzo Librandi, May 24 2015
CROSSREFS
Sequence in context: A142450 A259421 A202008 * A262915 A262330 A142632
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, May 23 2015
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 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)