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.

A173974 Numbers k such that k^k+43 is prime.

Original entry on oeis.org

2, 8, 14, 26, 84, 574
Offset: 1

Views

Author

Keywords

Comments

a(7) > 3000. - Daniel Starodubtsev, Aug 06 2019

Examples

			2^2 + 43 = 47, which is prime, so 2 is in the sequence.
		

Crossrefs

Programs

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