A054681 Start of a run of consecutive primes of length n each ending with the same digit.
2, 139, 1627, 18839, 123229, 776257, 3873011, 23884639, 36539311, 196943081, 452942827, 73712513057, 154351758091, 154351758091, 4010803176619, 6987191424553, 71894236537009, 196948379177587, 253931039382791
Offset: 1
Examples
a(2)=139 because 139 and 149 are the first consecutive primes to share a terminal digit.
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)
Programs
-
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)
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
Comments