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.

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

Original entry on oeis.org

4, 15, 52, 240, 1121, 4888, 20047, 77280, 277441, 1093425, 5279468, 23647519, 99429196, 393425745, 1457109628, 4968639359, 24553864319, 113193708472, 488133974353, 1980778750800, 7547952442399, 26710380775592, 112605054449252
Offset: 1

Views

Author

Colin Barker, Oct 26 2013

Keywords

Comments

The corresponding x-values are in A230622.

Examples

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

Crossrefs

Programs

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