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.

A100838 Numbers k such that k^k + 7 is prime.

Original entry on oeis.org

2, 4, 6, 32
Offset: 1

Views

Author

Cino Hilliard, Jan 07 2005

Keywords

Comments

Here we interpret 0^0 as 1.
a(5) > 3000. - Daniel Starodubtsev, Aug 07 2019
a(5) > 17000. - Michael S. Branicky, Jun 29 2024

Crossrefs

Cf. A100841 (corresponding primes).

Programs

  • Mathematica
    lst={};Do[p=n^n+7;If[PrimeQ[p],AppendTo[lst,n]],{n,2*5!}];lst (* Vladimir Joseph Stephan Orlovsky, Nov 01 2009 *)
    Select[Range[35],PrimeQ[#^#+7]&] (* Harvey P. Dale, Oct 27 2018 *)
  • PARI
    f1(n,a) = for(x=0,n,y=x^x+a;if(ispseudoprime(y),print1(y",")))