|
| |
|
|
A089923
|
|
Largest prime in the reverse concatenation of the first n consecutive prime numbers when that concatenation is a prime.
|
|
0
| | |
|
|
|
OFFSET
| 5,1
|
|
|
EXAMPLE
| 53 is the reverse concatenation of the consecutive primes 3 and 5. 53 is prime.
|
|
|
PROG
| (PARI) revprime2(n) = { y=3; forprime(x=5, n, y=concat(Str(x), Str(y)); z=eval(y); if(ispseudoprime(z), print(x", "z)) ) }
|
|
|
CROSSREFS
| Sequence in context: A153499 A012782 A026685 * A145041 A179684 A197875
Adjacent sequences: A089920 A089921 A089922 * A089924 A089925 A089926
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Jan 11 2004
|
|
|
EXTENSIONS
| Edited by T. D. Noe (noe(AT)sspectra.com), Oct 30 2008
|
| |
|
|