OFFSET
1,1
COMMENTS
Is this sequence infinite?
FORMULA
Consider triangles with sides (2, 3, 3), (3, 5, 5), .., (x, y, y) where x is prime and y is the next prime after x. Concatenate these sides and output if prime.
EXAMPLE
For side x = 19, y = 23 and 192323 is prime.
PROG
(PARI) f(n) = for(x=1, n, y=Str(prime(x)); y=concat(y, concat(Str(prime(x+1)), Str(prime (x+1)))); if(isprime(eval(y)), print1(y", ")))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Cino Hilliard, Aug 23 2004
EXTENSIONS
Edited by Charles R Greathouse IV, Apr 29 2010
STATUS
approved