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.

A357055 Integers k such that k^k + k^2 + 3*k + 2 is prime.

Original entry on oeis.org

0, 1, 3, 5, 11, 209, 1281
Offset: 1

Views

Author

Marco RipĂ , Sep 10 2022

Keywords

Comments

a(8) > 20000, if it exists. - Michael S. Branicky, Sep 17 2024

Examples

			For k = 3, k^k + k^2 + 3*k + 2 = 47 and 47 is prime.
		

Crossrefs

Programs

  • PARI
    isok(k) = ispseudoprime(k^k + k^2 + 3*k + 2); \\ Michel Marcus, Sep 10 2022