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.

A250481 Primes of the form 2^x + y^2 with x, y > 0.

Original entry on oeis.org

3, 5, 11, 13, 17, 29, 41, 53, 73, 83, 89, 97, 113, 137, 173, 227, 229, 233, 241, 257, 281, 293, 337, 353, 443, 449, 457, 521, 569, 593, 617, 641, 733, 761, 857, 881, 953, 977, 1033, 1049, 1091, 1093, 1097, 1153, 1193, 1217, 1229, 1249, 1289, 1373
Offset: 1

Views

Author

Vincenzo Librandi, Nov 24 2014

Keywords

Examples

			11 is in the sequence because 2^1+3^2 = 11.
97 is in the sequence because 2^4+9^2 = 97.
		

Crossrefs

Cf. A248346.
Cf. primes of the type k^x+y^k: this sequence (k=2), A250716 (k=3), A250717 (k=4), A250842 (k=5), A250843 (k=6), A250844 (k=7).

Programs

  • Mathematica
    f[x_,y_]:=2^x + y^2; lst={};Do[p=f[x, y]; If[PrimeQ[p], AppendTo[lst, p]], {y, 50}, {x, 50}]; Take[Union[lst], 50]

A248525 Primes of the form 2^x - y^2 that are primes of the form m^2 - 2^k.

Original entry on oeis.org

2, 3, 7, 23, 47, 79, 223, 727, 1087
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Oct 07 2014

Keywords

Comments

Primes p such that p = A248346(i) = A248344(j).
Intersection of A248346 and A248344.

Examples

			2 is in this sequence because 2 = A248346(1) = A248344(1).
		

Crossrefs

Extensions

Edited. Keyword more added. - Wolfdieter Lang, Oct 30 2014
Showing 1-2 of 2 results.