login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A089923
Duplicate of A100003.
0
5, 17, 89, 383
OFFSET
5,1
COMMENTS
Previous name: Largest prime in the reverse concatenation of the first n consecutive prime numbers when that concatenation is a prime.
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 * A374292 A145041 A212291
KEYWORD
dead
AUTHOR
Cino Hilliard, Jan 11 2004
EXTENSIONS
Edited by T. D. Noe, Oct 30 2008
STATUS
approved