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 11-12 of 12 results.

A217385 Numbers n such that 9^n + 8 is prime.

Original entry on oeis.org

1, 2, 4, 7, 10, 19, 22, 44, 62, 76, 122, 2191, 3134, 9244, 40999, 48230
Offset: 1

Views

Author

Vincenzo Librandi, Oct 04 2012

Keywords

Comments

Contains exactly the halved even terms of A217136. - Bruno Berselli, Oct 04 2012

Crossrefs

Programs

  • Mathematica
    Select[Range[5000], PrimeQ[9^# + 8] &]
  • PARI
    is(n)=ispseudoprime(9^n+8) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(14) from Bruno Berselli, Oct 05 2012
a(15)-a(16) derived from A217136 by Robert Price, May 19 2015

A248547 Numbers n such that 75^n+2 is prime.

Original entry on oeis.org

0, 12, 28, 53, 65, 504, 1967, 6915
Offset: 1

Views

Author

Vaclav Kotesovec, Oct 08 2014

Keywords

Comments

Dedicated to N. J. A. Sloane for his 75th birthday!
Next term, if it exists, is greater than 10000.
Next term, if it exists, is greater than 50000. - Michael S. Branicky, May 21 2025

Crossrefs

Programs

  • Magma
    [n: n in [0..200] | IsPrime(75^n+2)]; // Vincenzo Librandi, Oct 08 2014
    
  • Mathematica
    Select[Range[0, 1000], PrimeQ[75^# + 2] &]
  • PARI
    is(n)=ispseudoprime(75^n+2) \\ Charles R Greathouse IV, Jun 13 2017
Previous Showing 11-12 of 12 results.