|
Search: id:A094739
|
|
|
| A094739 |
|
Numbers n such that 4^k n, for k >= 0, are numbers having a unique partition into three squares. |
|
+0 5
|
|
| 1, 2, 3, 5, 6, 10, 11, 13, 14, 19, 21, 22, 30, 35, 37, 42, 43, 46, 58, 67, 70, 78, 91, 93, 115, 133, 142, 163, 190, 235, 253, 403, 427
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Lehmer's paper has an erroneous version of this sequence. He omits 163 and includes 162 (which has 4 partitions) and 182 (which has 3 partitions). Lemher conjectures that there are no more terms. Note that squares are allowed to be zero.
|
|
REFERENCES
|
D. H. Lehmer, On the partition of numbers into squares, Amer. Math. Monthly, Vol. 55, No. 8 (Oct 1948), 476-481.
|
|
EXAMPLE
|
163 is in this sequence because 163 = 1+81+81 is the unique partition of 163.
|
|
MATHEMATICA
|
lim=100; nLst=Table[0, {lim^2}]; Do[n=a^2+b^2+c^2; If[n>0 && n<lim^2, nLst[[n]]++ ], {a, 0, 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&]
|
|
CROSSREFS
|
Cf. A005875 (number of ways of writing n as the sum of three squares), A094740 (n having a unique partition into three positive squares).
Sequence in context: A014593 A034044 A047447 this_sequence A063451 A076474 A057760
Adjacent sequences: A094736 A094737 A094738 this_sequence A094740 A094741 A094742
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
T. D. Noe (noe(AT)sspectra.com), May 24 2004
|
|
|
Search completed in 0.002 seconds
|