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.

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

Original entry on oeis.org

4, 9, 115, 720, 2476, 42471, 4765, 1788961, 3780956, 51872200, 310486445, 1142532559, 18483128564, 4205436520, 799862636324, 1584162310079, 23384002313285, 133802323596440, 526151093402156, 8041209044472401, 2783579583540395, 357525366658772391
Offset: 1

Views

Author

Colin Barker, Oct 29 2013

Keywords

Comments

The corresponding y-values are in A230744.

Examples

			a(3)=115 because 115^2+236^2=68921=41^3.
		

Crossrefs

Programs

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