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.

A217095 Numbers n such that (10^n + 9^n)/19 is prime.

Original entry on oeis.org

7, 67, 73, 1091, 1483, 10937
Offset: 1

Views

Author

Robert Price, Feb 17 2013

Keywords

Comments

The numbers n themselves (7, 67, 73, ...) are also prime.
a(7) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (10^# + 9^#)/19 ]& ]
  • PARI
    is(n)=isprime((10^n+9^n)/19) \\ Charles R Greathouse IV, Feb 17 2017