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.

A328217 Numbers k such that k^(k+1)*(k+1)^k + 1 is prime.

Original entry on oeis.org

1, 2, 14, 22, 120
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Oct 08 2019

Keywords

Comments

a(6) > 10^3.
Numbers k such that A051443(k)+1 is prime. - Michel Marcus, Oct 08 2019
a(6) > 10^4, if it exists. - Michael S. Branicky, Aug 24 2024

Crossrefs

Programs

  • Magma
    [n: n in [1..500] | IsPrime(n^(n+1)*(n+1)^n+1)];
  • Mathematica
    Select[Range[120], PrimeQ[#^(# + 1)*(# + 1)^# + 1] &] (* Amiram Eldar, Oct 08 2019 *)