login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A357055
Integers k such that k^k + k^2 + 3*k + 2 is prime.
0
0, 1, 3, 5, 11, 209, 1281
OFFSET
1,3
COMMENTS
a(8) > 20000, if it exists. - Michael S. Branicky, Sep 17 2024
EXAMPLE
For k = 3, k^k + k^2 + 3*k + 2 = 47 and 47 is prime.
PROG
(PARI) isok(k) = ispseudoprime(k^k + k^2 + 3*k + 2); \\ Michel Marcus, Sep 10 2022
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Marco Ripà, Sep 10 2022
STATUS
approved