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.

A225818 Numbers n such that (19^n + 18^n)/37 is prime.

Original entry on oeis.org

5, 223, 311, 54547
Offset: 1

Views

Author

Robert Price, Aug 26 2013

Keywords

Comments

All terms are primes.
a(5) > 10^5. - Robert Price, Oct 03 2013

Crossrefs

Programs

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

A228573 Numbers n such that (17^n + 16^n)/33 is prime.

Original entry on oeis.org

41, 97, 1459, 89227, 91837
Offset: 1

Views

Author

Robert Price, Aug 25 2013

Keywords

Comments

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

Crossrefs

Programs

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

A231329 Numbers n such that (19^n + 4^n)/23 is prime.

Original entry on oeis.org

7, 11, 211, 14461
Offset: 1

Views

Author

Robert Price, Nov 07 2013

Keywords

Comments

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

Crossrefs

Programs

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