login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A198437 Third term of a triple of squares in arithmetic progression, which is not a multiple of another triple in (A198384,A198385,A198386). 8

%I #14 Oct 20 2021 12:20:50

%S 49,289,529,961,1681,2209,2401,5041,5329,6241,7921,9409,10609,12769,

%T 14161,14161,16129,18769,22801,25921,25921,27889,36481,37249,39601,

%U 47089,47089,49729,54289,57121,58081,66049,69169,73441,78961,82369,82369,83521,96721

%N Third term of a triple of squares in arithmetic progression, which is not a multiple of another triple in (A198384,A198385,A198386).

%H Ray Chandler, <a href="/A198437/b198437.txt">Table of n, a(n) for n = 1..10000</a>

%H Keith Conrad, <a href="http://www.math.uconn.edu/~kconrad/blurbs/ugradnumthy/3squarearithprog.pdf">Arithmetic progressions of three squares</a>

%H Reinhard Zumkeller, <a href="/A198435/a198435.txt">Table of initial values</a>

%F a(n) = A198441(n)^2 = A198386(A198409(n));

%F a(n) - A198436(n) = A198436(n) - A198435(n) = A198438(n).

%t wmax = 1000;

%t triples[w_] := Reap[Module[{u, v}, For[u = 1, u < w, u++, If[IntegerQ[v = Sqrt[(u^2 + w^2)/2]], Sow[{u^2, v^2, w^2}]]]]][[2]];

%t tt = Flatten[DeleteCases[triples /@ Range[wmax], {}], 2];

%t DeleteCases[tt, t_List /; GCD @@ t>1 && MemberQ[tt, t/GCD @@ t]][[All, 3]] (* _Jean-François Alcover_, Oct 20 2021 *)

%o (Haskell)

%o a198437 n = a198437_list !! (n-1)

%o a198437_list = map a198386 a198409_list

%Y Cf. A198435, A198436, A198438, A198409, A198441.

%K nonn

%O 1,1

%A _Reinhard Zumkeller_, Oct 25 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:14 EDT 2024. Contains 371906 sequences. (Running on oeis4.)