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.

A330678 First of two consecutive prime numbers both of which end with the digits 0,1.

Original entry on oeis.org

13200001, 14272201, 18494401, 20583601, 21699901, 27615001, 34697701, 37661101, 44561401, 52399801, 60096901, 61571701, 64683301, 67659301, 74313301, 76605301, 80451001, 85268401, 92287801, 92898301, 95076901, 96184801, 101931601, 112800001, 114759901
Offset: 1

Views

Author

Harvey P. Dale, Mar 01 2020

Keywords

Examples

			20583601 is a prime and the next prime is 20583701, both which end in 0,1.
		

Crossrefs

Cf. A050434.

Programs

  • Mathematica
    Select[Partition[Prime[Range[10000000]],2,1],Mod[#[[1]],100]==Mod[+#[[2]], 100]==1&][[All,1]]