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.

Previous Showing 31-33 of 33 results.

A230139 Numbers n such that (17^n - 4^n)/13 is prime.

Original entry on oeis.org

3, 5, 7, 11, 31, 101, 887, 4861
Offset: 1

Views

Author

Robert Price, Oct 10 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1, 100000]], PrimeQ[(17^# - 4^#)/13]&]
  • PARI
    is(n)=ispseudoprime((17^n-4^n)/13) \\ 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

A375620 Numbers k such that (20^k - 3^k)/17 is prime.

Original entry on oeis.org

2, 43, 1723, 2971, 3257, 12263, 38933
Offset: 1

Views

Author

William Dean, Aug 21 2024

Keywords

Comments

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

Examples

			a(1) = 2 corresponds to the prime number 23.
		

Crossrefs

Programs

  • PARI
    is(k) = ispseudoprime((20^k - 3^k)/17)
Previous Showing 31-33 of 33 results.