OFFSET
1,2
FORMULA
A073640(n) = prime(a(n)), with a(n) the n-th term in this sequence.
EXAMPLE
E.g. For n=5: a(5)=11, a(6)=12 and the concatenation of 11th and 12th primes is 3137, which is also prime. The 5th and 6th terms in A073640 are 31 and 37.
MAPLE
nout := [1]: for n from 2 to 1000 do: p := ithprime(n): d := parse(cat(pout[nops(pout)], p)): if (isprime(d)) then nout := [op(nout), n]: fi: od:
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Mark Hudson (mrmarkhudson(AT)hotmail.com), Jan 31 2003
EXTENSIONS
Edited by Charles R Greathouse IV, Apr 26 2010
STATUS
approved