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.

A309747 Numbers k such that k^k + (k+1)^(k+1) is a semiprime.

Original entry on oeis.org

5, 7, 9, 11, 14, 21, 37, 38, 39, 57, 90, 97, 162
Offset: 1

Views

Author

Hugo Pfoertner, Aug 15 2019

Keywords

Comments

Numbers k such that A217435(k+1) = 2.
a(14) >= 235, see FactorDB link.

Examples

			a(1) = 5 because 5^5 + 6^6 = 49781 = 67*743.
		

Crossrefs

Programs

  • PARI
    for(k=0,40,if(bigomega(k^k+(k+1)^(k+1))==2,print1(k,", ")))