A294743 Numbers that are the sum of 5 nonzero squares in exactly 9 ways.
101, 112, 115, 118, 127, 144, 159, 161, 165, 169, 180
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 &] == 9]; Select[Range@250, fQ](* Robert G. Wilson v, Nov 17 2017 *)
Comments