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.

A228922 Numbers n such that (19^n + 2^n)/21 is prime.

Original entry on oeis.org

5, 13, 41, 43, 83, 139, 557, 863, 1051, 4003
Offset: 1

Views

Author

Robert Price, Sep 08 2013

Keywords

Comments

All terms are primes.
a(11) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1, 100000]], PrimeQ[(19^# + 2^#)/21]&]
  • PARI
    is(n)=ispseudoprime((19^n+2^n)/21) \\ Charles R Greathouse IV, Jun 13 2017

A221637 Numbers n such that (15^n + 14^n)/29 is prime.

Original entry on oeis.org

3, 127, 227, 1009, 1951, 5101, 14011
Offset: 1

Views

Author

Robert Price, May 28 2013

Keywords

Comments

All terms are prime.
a(8) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (15^# + 14^#)/29 ]& ]
  • PARI
    is(n)=ispseudoprime((15^n+14^n)/29) \\ Charles R Greathouse IV, Feb 20 2017

A224507 Numbers n such that (17^n + 2^n)/19 is prime.

Original entry on oeis.org

5, 7, 113, 193, 211, 701, 797, 907, 4153
Offset: 1

Views

Author

Robert Price, Jul 20 2013

Keywords

Comments

All terms are prime.
a(10) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1, 100000]], PrimeQ[(17^# + 2^#)/19]&]
  • PARI
    is(n)=ispseudoprime((17^n+2^n)/19) \\ Charles R Greathouse IV, Jun 06 2017
Showing 1-3 of 3 results.