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.

A094740 Numbers n such that 4^k n, for k >= 0, are numbers having a unique partition into three positive squares.

This page as a plain text file.
%I A094740 #3 Mar 30 2012 17:22:33
%S A094740 3,6,9,11,14,17,18,19,21,22,26,29,30,34,35,42,43,45,46,49,50,53,61,65,
%T A094740 67,70,73,78,82,91,93,97,106,109,115,133,142,145,157,163,169,190,193,
%U A094740 202,205,235,253,265,277,298,397,403,427,442,445,505,793
%N A094740 Numbers n such that 4^k n, for k >= 0, are numbers having a unique partition into three positive squares.
%C A094740 It is conjectured that this sequence is complete.
%e A094740 793 is in this sequence because 793 = 6^2 + 9^2 + 26^2 is the unique partition of 793.
%t A094740 lim=100; nLst=Table[0, {lim^2}]; Do[n=a^2+b^2+c^2; If[n>0 && n<lim^2, nLst[[n]]++ ], {a, lim}, {b, a, Sqrt[lim^2-a^2]}, {c, b, Sqrt[lim^2-a^2-b^2]}]; Select[Flatten[Position[nLst, 1]], Mod[ #, 4]>0&]
%Y A094740 Cf. A094739 (n having a unique partition into three squares).
%K A094740 nonn
%O A094740 1,1
%A A094740 _T. D. Noe_, May 24 2004