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.

A076675 Smallest a(n)>a(n-1) such that a(n)^2+a(n-1)^2 is a perfect square, a(1)=10.

This page as a plain text file.
%I A076675 #8 Jun 22 2013 11:53:38
%S A076675 10,24,32,60,63,84,112,180,189,252,275,660,693,924,1232,1326,1768,
%T A076675 1974,2632,4026,5368,6405,8200,8319,11092,11715,15620,16401,19720,
%U A076675 20706,20880,20910,24752,24960,25300,26565,29716,29835,33048,35055,41496
%N A076675 Smallest a(n)>a(n-1) such that a(n)^2+a(n-1)^2 is a perfect square, a(1)=10.
%C A076675 The sequence is infinite.
%C A076675 Apart from first term, identical to A076673. [From _R. J. Mathar_, Sep 20 2008]
%t A076675 ps[n_]:=Module[{x=n+1,n2=n^2},While[!IntegerQ[Sqrt[n2+x^2]],x++];x]; NestList[ps,10,40] (* _Harvey P. Dale_, Jun 22 2013 *)
%Y A076675 Cf. A076600.
%K A076675 nonn
%O A076675 1,1
%A A076675 _Zak Seidov_, Oct 25 2002