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-2 of 2 results.

A225191 Numbers n such that (15^n + 2^n)/17 is prime.

Original entry on oeis.org

3, 67, 199, 479, 563, 2243, 2579, 6599, 7951, 10099, 10909, 13759
Offset: 1

Views

Author

Robert Price, May 07 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1, 100000]], PrimeQ[(15^# + 2^#)/17]&]
  • PARI
    forprime(p=3,10^6, if(ispseudoprime((15^p + 2^p)/17), print1(p,", ") ) ); \\ Joerg Arndt, Jul 29 2013

Extensions

Removed incorrect first term of "2".

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-2 of 2 results.