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-1 of 1 results.

A078927 Smallest s for which there are exactly n primitive Pythagorean triangles with perimeter 2s; i.e., smallest s such that A078926(s) = n.

Original entry on oeis.org

6, 858, 7140, 158730, 771342, 3120180, 9699690, 31651620, 119584290, 198843645, 229474245, 406816410, 281291010, 1412220810, 1673196525, 3457939485, 3234846615, 4360010655, 4573403835, 4127218095, 11532931410, 12929686770, 101268227775
Offset: 1

Views

Author

Dean Hickerson, Dec 15 2002

Keywords

Comments

A Pythagorean triangle is a right triangle whose edge lengths are all integers; such a triangle is 'primitive' if the lengths are relatively prime.

Examples

			a(2)=858; the primitive Pythagorean triangles with edge lengths (364, 627, 725) and (195, 748, 773) both have perimeter 2*858 = 1716.
		

Crossrefs

a(n) = A078928(n)/2. Cf. A078926.

Programs

  • Mathematica
    oddpart[n_] := If[OddQ[n], n, oddpart[n/2]]; ct[p_] := Length[Select[Divisors[oddpart[p/2]], p/2<#^2
    				

Extensions

a(8) from Robert G. Wilson v, Dec 19 2002
a(9)-a(15) from Derek J C Radden, Dec 22 2012
a(16)-a(23) from Peter T. C. Radden, Dec 29 2012
Showing 1-1 of 1 results.