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.

A196383 Positive integers a for which there is a (-5)-Pythagorean triple (a,b,c) satisfying a<=b.

This page as a plain text file.
%I A196383 #8 Mar 30 2012 18:57:49
%S A196383 1,1,2,2,3,3,3,3,4,4,5,5,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,8,8,9,9,9,9,
%T A196383 9,9,10,10,10,10,10,10,11,11,11,11,11,11,12,12,12,12,13,13,13,13,13,
%U A196383 14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16
%N A196383 Positive integers a for which there is a (-5)-Pythagorean triple (a,b,c) satisfying a<=b.
%C A196383 See A195770 for definitions of k-Pythagorean triple, primitive k-Pythagorean triple, and lists of related sequences.
%t A196383 z8 = 900; z9 = 250; z7 = 200;
%t A196383 pIntegerQ := IntegerQ[#1] && #1 > 0 &;
%t A196383 k = -5; c[a_, b_] := Sqrt[a^2 + b^2 + k*a*b];
%t A196383 d[a_, b_] := If[pIntegerQ[c[a, b]], {a, b, c[a, b]}, 0]
%t A196383 t[a_] := Table[d[a, b], {b, a, z8}]
%t A196383 u[n_] := Delete[t[n], Position[t[n], 0]]
%t A196383 Table[u[n], {n, 1, 15}]
%t A196383 t = Table[u[n], {n, 1, z8}];
%t A196383 Flatten[Position[t, {}]]
%t A196383 u = Flatten[Delete[t, Position[t, {}]]];
%t A196383 x[n_] := u[[3 n - 2]];
%t A196383 Table[x[n], {n, 1, z7}]  (* A196383 *)
%t A196383 y[n_] := u[[3 n - 1]];
%t A196383 Table[y[n], {n, 1, z7}]  (* A196384 *)
%t A196383 z[n_] := u[[3 n]];
%t A196383 Table[z[n], {n, 1, z7}]  (* A196385 *)
%t A196383 x1[n_] := If[GCD[x[n], y[n], z[n]] == 1, x[n], 0]
%t A196383 y1[n_] := If[GCD[x[n], y[n], z[n]] == 1, y[n], 0]
%t A196383 z1[n_] := If[GCD[x[n], y[n], z[n]] == 1, z[n], 0]
%t A196383 f = Table[x1[n], {n, 1, z9}];
%t A196383 x2 = Delete[f, Position[f, 0]]  (* A196386 *)
%t A196383 g = Table[y1[n], {n, 1, z9}];
%t A196383 y2 = Delete[g, Position[g, 0]]  (* A196387 *)
%t A196383 h = Table[z1[n], {n, 1, z9}];
%t A196383 z2 = Delete[h, Position[h, 0]]  (* A196388 *)
%Y A196383 Cf. A195770, A196384, A196385, A196386.
%K A196383 nonn
%O A196383 1,3
%A A196383 _Clark Kimberling_, Oct 01 2011