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”).

A070277
Smallest prime ending in n, or 0 if no such prime exists.
2
11, 2, 3, 0, 5, 0, 7, 0, 19, 0, 11, 0, 13, 0, 0, 0, 17, 0, 19, 0, 421, 0, 23, 0, 0, 0, 127, 0, 29, 0, 31, 0, 233, 0, 0, 0, 37, 0, 139, 0, 41, 0, 43, 0, 0, 0, 47, 0, 149, 0, 151, 0, 53, 0, 0, 0, 157, 0, 59, 0, 61, 0, 163, 0, 0, 0, 67, 0, 269, 0, 71, 0, 73, 0, 0, 0, 277, 0, 79, 0, 181, 0
OFFSET
1,1
LINKS
PROG
(PARI) A070277(n) = if(!(n%2) || !(n%5), isprime(n)*n, my(k=10^#digits(n)); forprime(p=n, oo, if(0==((p-n)%k), return(p)))); \\ Antti Karttunen, Feb 06 2019
CROSSREFS
Sequence in context: A322562 A040118 A099268 * A109864 A231433 A240454
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 07 2002
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Sep 26 2002
STATUS
approved