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-3 of 3 results.

A156200 Primes that contain all the digits {0,6,8,9} and only these digits.

Original entry on oeis.org

6089, 8069, 8609, 60089, 60689, 60869, 60889, 60899, 66089, 66809, 68099, 68909, 69809, 80669, 86069, 88069, 88609, 89069, 600689, 600889, 606899, 608089, 608099, 608609, 608669, 608899, 608989, 608999, 609809, 609989, 660809, 660899, 666089
Offset: 1

Views

Author

Ki Punches, Feb 05 2009

Keywords

Crossrefs

Cf. A053580 properly contains this sequence.

Programs

  • Python
    from itertools import product
    from gmpy2 import is_prime
    A156200_list = [int(''.join(d)) for l in range(4,10) for d in product('0689',repeat=l) if d[0] != '0' and len(set(d)) == 4 and is_prime(int(''.join(d)))] # Chai Wah Wu, Aug 13 2015

Extensions

Edited and corrected by Ray Chandler, Feb 08 2009

A052090 Palindromic primes whose digits contain circles.

Original entry on oeis.org

98689, 9686869, 9809089, 9888889, 9889889, 9896989, 9908099, 9980899, 9989899, 900808009, 906686609, 906868609, 906989609, 908000809, 908060809, 908808809, 908888809, 909868909, 960898069, 968606869, 968666869, 968868869, 968898869
Offset: 1

Views

Author

Patrick De Geest, Jan 15 2000

Keywords

Crossrefs

Cf. A053580.

A108320 Numbers k such that 609 * 10^k - 1 is prime.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 12, 17, 43, 46, 50, 88, 110, 187, 472, 832, 834, 1034, 1311, 1700, 2756, 5470, 6124, 7404, 7891, 12010, 16411, 24576, 25461, 27982, 38762
Offset: 1

Views

Author

Jason Earls, Jun 30 2005

Keywords

Examples

			a(4) = 4 because 609*10^4-1 = 6089999, a prime.
		

Crossrefs

Cf. A053580.

Programs

Extensions

a(27) from Michael S. Branicky, May 19 2023
a(28)-a(31) from Michael S. Branicky, Oct 29 2024
Showing 1-3 of 3 results.