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.

A287842 Primes of the form (1 + x)^(2^y) + x^(2^y) where x is a divisor of y.

Original entry on oeis.org

5, 17, 97, 257, 65537
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jun 01 2017

Keywords

Examples

			97 is in this sequence because (1 + 2)^(2^2) + 2^(2^2) = 97 is prime and 2 is a divisor of 2.
		

Crossrefs

Subsequence of A285886.
Cf. A019434.

Programs

  • Mathematica
    Sort@ Flatten@ Table[Function[{x, y}, Select[(1 + x)^(2^y) + x^(2^y), PrimeQ]] @@ {Divisors@ #, #} &@ n, {n, 12}] (* Michael De Vlieger, Jun 01 2017 *)