[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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