A294740 Numbers that are the sum of 5 nonzero squares in exactly 6 ways.
80, 86, 92, 98, 100, 103, 110, 113, 117, 121, 135, 145
Offset: 1
References
- E. Grosswald, Representations of Integers as Sums of Squares. Springer-Verlag, New York, 1985, p. 86, Theorem 1.
Links
- H. von Eitzen, in reply to user James47, What is the largest integer with only one representation as a sum of five nonzero squares? on stackexchange.com, May 2014
- D. H. Lehmer, On the Partition of Numbers into Squares, The American Mathematical Monthly, Vol. 55, No. 8, October 1948, pp. 476-481.
- Eric Weisstein's World of Mathematics, Square Number.
- Index entries for sequences related to sums of squares
Programs
-
Mathematica
fQ[n_] := Block[{pr = PowersRepresentations[n, 5, 2]}, Length@Select[pr, #[[1]] > 0 &] == 6]; Select[Range@200, fQ] (* Robert G. Wilson v, Nov 17 2017 *)
Comments