cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A054681 Start of a run of consecutive primes of length n each ending with the same digit.

Original entry on oeis.org

2, 139, 1627, 18839, 123229, 776257, 3873011, 23884639, 36539311, 196943081, 452942827, 73712513057, 154351758091, 154351758091, 4010803176619, 6987191424553, 71894236537009, 196948379177587, 253931039382791
Offset: 1

Views

Author

Jeff Burch, Apr 18 2000

Keywords

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.

Examples

			a(2)=139 because 139 and 149 are the first consecutive primes to share a terminal digit.
		

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