OFFSET
1,1
COMMENTS
n consecutive primes differ by a multiple of 10 starting at a(n).
n consecutive primes that are congruent mod 10, i.e., they are not necessarily in arithmetic progression.
LINKS
J. K. Andersen, Consecutive Congruent Primes.
William F. Sindelar, Mark Underwood, Mikael Klasson, Gaps Between Consecutive Odds not Divisible by 3, digest of 5 messages in primenumbers Yahoo group, Jun 27 - Jun 29, 2003. [Cached copy]
Mark Underwood's Problem posed on the "PrimeNumbers" yahoogroup (2003)
EXAMPLE
a(2)=139 because 139 and 149 are the first consecutive primes to share a terminal digit.
PROG
(PARI) i=1; s=0; d=0; l=0; forprime(p=1, 500000, if(p%10==d, l++, if(l>=i, print(s); i++); s=p; d=p%10; l=1)) \\ (Carmody)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jeff Burch, Apr 18 2000
EXTENSIONS
More terms from Phil Carmody, Jun 27 2003
Further from Jens Kruse Andersen, Jun 03 2006
a(17)-a(19) from Giovanni Resta, Aug 01 2013
STATUS
approved