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.

A025304 Numbers that are the sum of 2 distinct nonzero squares in exactly 3 ways.

This page as a plain text file.
%I A025304 #17 Dec 08 2013 06:30:13
%S A025304 325,425,650,725,845,850,925,1025,1300,1325,1445,1450,1525,1690,1700,
%T A025304 1825,1850,2050,2225,2425,2525,2600,2650,2725,2825,2873,2890,2900,
%U A025304 2925,3050,3125,3380,3400,3425,3650,3700,3725,3757,3825,3925,4100,4205,4325
%N A025304 Numbers that are the sum of 2 distinct nonzero squares in exactly 3 ways.
%H A025304 Donovan Johnson, <a href="/A025304/b025304.txt">Table of n, a(n) for n = 1..1000</a>
%H A025304 <a href="/index/Su#ssq">Index entries for sequences related to sums of squares</a>
%t A025304 nn = 4325; t = Table[0, {nn}]; lim = Floor[Sqrt[nn - 1]]; Do[num = i^2 + j^2; If[num <= nn, t[[num]]++], {i, lim}, {j, i - 1}]; Flatten[Position[t, 3]] (* _T. D. Noe_, Apr 07 2011 *)
%K A025304 nonn
%O A025304 1,1
%A A025304 _David W. Wilson_