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.

Showing 1-2 of 2 results.

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",")))

A173640 Primes of form n+2^n+3^n.

Original entry on oeis.org

2, 101, 60083, 11610630703530923996233764322611619865107483053157900065365853867349888133476404509
Offset: 1

Views

Author

Keywords

Comments

For a(5), n > 10000. - Daniel Starodubtsev, Aug 04 2019

Crossrefs

Programs

  • Mathematica
    Select[Table[n+2^n+3^n,{n,0,6!}],PrimeQ[#]&]
Showing 1-2 of 2 results.