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.

A230622 Values of x such that x^2 + y^2 = 17^n with x and y coprime and 0 < x < y.

Original entry on oeis.org

1, 8, 47, 161, 404, 495, 2908, 31679, 203996, 905768, 2529647, 4839120, 4291039, 116593352, 859799153, 4896306240, 14978251196, 35359140465, 28242853388, 375162560801, 3481428994004, 21473668418415, 85367854683953, 228866364286560
Offset: 1

Views

Author

Colin Barker, Oct 26 2013

Keywords

Comments

The corresponding y-values are in A230623.

Examples

			a(2)=8 because 8^2+15^2=289=17^2.
		

Crossrefs

Programs

  • Mathematica
    Table[Select[PowersRepresentations[17^n, 2, 2], CoprimeQ@@#&][[1, 1]], {n, 1, 40}] (* Vincenzo Librandi, Mar 02 2014 *)