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.

Showing 1-2 of 2 results.

A068648 Primes in which a string of 8's is sandwiched between two 1's.

Original entry on oeis.org

11, 181, 188888881, 188888888888881, 18888888888888888888888888888888888888881, 188888888888888888888888888888888888888888888888888888888888888888888888888888888888888888881
Offset: 1

Views

Author

Amarnath Murthy, Feb 28 2002

Keywords

Comments

The next term -- a(7) -- has 129 digits. - Harvey P. Dale, Jul 08 2020

Examples

			11 is also a member in which a string of 0 8's is there between two one's.
		

Crossrefs

Programs

  • Maple
    a := 1:b := 8:i := 1:for n from 0 to 500 do c := a+10*(10^n-1)/9*b+10^(n+1)*a; if(isprime(c)) then d[i] := c; i := i+1; end if; end do:q := seq(d[j],j=1..i-1);
  • Mathematica
    Select[Table[10FromDigits[PadRight[{1},n,8]]+1,{n,100}],PrimeQ] (* Harvey P. Dale, Jul 08 2020 *)

Extensions

More terms from Sascha Kurz, Mar 19 2002
Edited by Ray Chandler, Nov 04 2014

A082702 Numbers k such that (17*10^(k-1) - 71)/9 is a plateau prime.

Original entry on oeis.org

3, 9, 15, 41, 93, 129, 885, 9425, 14769, 19259, 31235
Offset: 1

Views

Author

Patrick De Geest, Apr 13 2003

Keywords

Comments

Prime versus probable prime status and proofs are given in the author's table.

Examples

			k=15 -> (17*10^(15-1) - 71)/9 = 188888888888881.
		

References

  • C. Caldwell and H. Dubner, "Journal of Recreational Mathematics", Volume 28, No. 1, 1996-97, pp. 1-9.

Crossrefs

Formula

a(n) = A056249(n+1) + 2.

Extensions

More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 02 2008
Edited by Ray Chandler, Nov 04 2014
Showing 1-2 of 2 results.