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.

A173975 Numbers k such that k^k + 115 is prime.

Original entry on oeis.org

6, 8, 18, 36, 38, 176
Offset: 1

Views

Author

Keywords

Comments

a(7) > 3000. - Daniel Starodubtsev, Aug 05 2019
a(7) > 30000. - Michael S. Branicky, Nov 30 2024

Crossrefs

Programs

  • Mathematica
    f[n_]:=PrimeQ[n^n+115];lst={};Do[If[f[n],AppendTo[lst,n]],{n,6!}];lst
  • PARI
    is(n)=ispseudoprime(n^n+115) \\ Charles R Greathouse IV, Jun 13 2017