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.

A225807 Numbers n such that (17^n - 2^n)/15 is prime.

Original entry on oeis.org

2, 83, 1907, 2591, 16223, 17183
Offset: 1

Views

Author

Robert Price, Jul 29 2013

Keywords

Comments

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

Crossrefs

Programs

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

A229542 Numbers n such that (19^n - 2^n)/17 is prime.

Original entry on oeis.org

11, 19, 79, 631, 1787, 2011, 2381, 20219, 49523
Offset: 1

Views

Author

Robert Price, Sep 25 2013

Keywords

Comments

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

Crossrefs

Programs

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

A241921 Numbers k such that (15^k - 4^k)/11 is prime.

Original entry on oeis.org

2, 1097, 2243, 2857, 4357, 6803, 20747, 24571
Offset: 1

Views

Author

Robert Price, May 01 2014

Keywords

Comments

All terms are prime.
a(9) > 10^5.
a(1) is trivially prime, the remainder are probable primes.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1, 100000]], PrimeQ[(15^# - 4^#)/11]&]
  • PARI
    is(n)=ispseudoprime((15^n-4^n)/11) \\ Charles R Greathouse IV, Jun 13 2017
Showing 1-3 of 3 results.