|
| |
|
|
A086043
|
|
Concatenation of first n twin primes.
|
|
1
| |
|
|
3, 35, 357, 35711, 3571113, 357111317, 35711131719, 3571113171929, 357111317192931, 35711131719293141, 3571113171929314143, 357111317192931414359, 35711131719293141435961
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| 357111317192931414359 is the only prime in the sequence for n up to 10000.
|
|
|
LINKS
| C. K. Caldwell, Twin Primes.
O. E. Pol, Determinacion geometrica de los numeros primos y perfectos.
|
|
|
PROG
| (PARI) concattwprb(n) = { y=3; forprime(x=5, n, if(isprime(x+2) || isprime(x-2), y=eval(concat(Str(y), Str(x))); print1(y", ") ) ) }
|
|
|
CROSSREFS
| Cf. A086080, A086158.
Twin primes: A001097. Cf. A007908, A019518, A059996, A078795, A089933.
Sequence in context: A198961 A112488 A089933 * A006767 A065929 A161495
Adjacent sequences: A086040 A086041 A086042 * A086044 A086045 A086046
|
|
|
KEYWORD
| easy,nonn,base
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Sep 08 2003
|
|
|
EXTENSIONS
| Edited by N. J. A. Sloane (njas(AT)research.att.com), Jul 01 2008 at the suggestion of R. J. Mathar
|
| |
|
|