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.

A099656 a(n) is the least prime following A002276(n) repdigits.

Original entry on oeis.org

2, 3, 23, 223, 2237, 22229, 222247, 2222239, 22222223, 222222227, 2222222243, 22222222223, 222222222301, 2222222222243, 22222222222229, 222222222222227, 2222222222222281, 22222222222222301, 222222222222222281
Offset: 0

Views

Author

Labos Elemer, Nov 17 2004

Keywords

Examples

			n=2: 22 is followed by 23.
		

Crossrefs

Programs

  • Maple
    seq(nextprime(2*(10^i-1)/9), i=0..20); # Robert Israel, Aug 25 2017
  • Mathematica
    Table[NextPrime[2*(10^n-1)/9], {n, 0, 35}]
    Table[ NextPrime[2*(10^n - 1)/9], {n, 0, 18}] (* Robert G. Wilson v, Nov 20 2004 *)
    Table[NextPrime[FromDigits[PadRight[{},n,2]]],{n,0,20}] (* Harvey P. Dale, Dec 15 2021 *)