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.

A107689 Primes with digital product = 3.

Original entry on oeis.org

3, 13, 31, 113, 131, 311, 11113, 11131, 11311, 113111, 131111, 311111, 11111131, 11111311, 11113111, 11131111, 111111113, 111111131, 111113111, 131111111, 11111111113, 11111111131, 11113111111, 11131111111, 31111111111
Offset: 1

Views

Author

Zak Seidov and Robert G. Wilson v, May 20 2005

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten[ Table[ Select[ Sort[ FromDigits /@ Permutations[ Flatten[{3, Table[1, {n}]}]]], PrimeQ[ # ] &], {n, 0, 12}]]
  • Python
    from sympy import isprime
    def agen():
      digits = 0
      while True:
        for i in range(digits+1):
          t = int("1"*(digits-i) + "3" + "1"*i)
          if isprime(t): yield t
        digits += 1
    g = agen()
    print([next(g) for i in range(25)]) # Michael S. Branicky, Mar 13 2021