OFFSET
1,1
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..7768
EXAMPLE
79 is in the sequence because it is a prime formed from the concatenation of 7 and 9, where 7 is the largest prime < 9.
8387 is in the sequence because it is a prime formed from the concatenation of 83 and 87, where 83 is the largest prime < 87.
MATHEMATICA
Select[Table[FromDigits[Join[IntegerDigits[Prime[PrimePi[n - 1]]], IntegerDigits[n]]], {n, 3, 1000}], PrimeQ]
PROG
(Magma) [p : n in[3..200] | IsPrime (p) where p is Seqint (Intseq (n) cat Intseq (PreviousPrime (n)))];
(PARI) terms(n) = my(i=0, x=3); while(1, my(cc=eval(Str(precprime(x-1), x))); if(ispseudoprime(cc), print1(cc, ", "); i++); if(i==n, break); x++)
/* Print initial 40 terms as follows: */
terms(40) \\ Felix Fröhlich, Jan 05 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Jan 05 2017
STATUS
approved