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.

A300292 Numbers k such that k^k + 9 is a prime.

Original entry on oeis.org

2, 130, 140
Offset: 1

Views

Author

Seiichi Manyama, Mar 16 2018

Keywords

Comments

No more terms <= 7000. - Jon E. Schoenfield, Mar 16 2018
No more terms <= 30000. - Michael S. Branicky, Sep 02 2024

Crossrefs

Numbers k such that k^k + b is a prime: A300981 (b=-10), A300976 (b=-5), A100408 (b=-2), A100407 (b=2), A166852 (b=3), A100837 (b=4), A100838 (b=7), this sequence (b=9), A100839 (b=10), A173974 (b=43).
Cf. A074966.

Programs

  • PARI
    isok(k) = ispseudoprime(k^k + 9); \\ Altug Alkan, Mar 16 2018

A300976 Numbers k such that k^k - 5 is a prime.

Original entry on oeis.org

4, 104, 124, 728
Offset: 1

Views

Author

Seiichi Manyama, Mar 17 2018

Keywords

Comments

728^728 - 5 is a probable prime.
Next term, if it exists, is greater than 5000. - Vaclav Kotesovec, Mar 25 2018
Next term, if it exists, is greater than 31000. - Robert Price, Mar 26 2018

Crossrefs

Numbers k such that k^k + b is a prime: A300981 (b=-10), this sequence (b=-5), A100408 (b=-2), A100407 (b=2), A166852 (b=3), A100837 (b=4), A100838 (b=7), A300292 (b=9), A100839 (b=10), A173974 (b=43).

Programs

  • Mathematica
    Select[Range[1000], PrimeQ[#^# - 5] &] (* Vaclav Kotesovec, Mar 25 2018 *)
  • PARI
    isok(k) = ispseudoprime(k^k - 5); \\ Altug Alkan, Mar 17 2018
Showing 1-2 of 2 results.