OFFSET
1,1
COMMENTS
The corresponding prime numbers are: (23, 59, 1733, 2957, 4793, 61121, ...).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
17 in this sequence because the concatenation of 17 and 33 is 1733 prime.
MATHEMATICA
p2pQ[n_]:=PrimeQ[FromDigits[IntegerDigits/@Join[n, 2 n - 1]]]; Select[Prime[Range[900]], p2pQ]
Select[Prime[Range[900]], With[{c=2#-1}, PrimeQ[#*10^IntegerLength[c]+c]]&] (* Harvey P. Dale, Feb 06 2025 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Jun 22 2014
STATUS
approved