OFFSET
1,2
COMMENTS
The smallest value in the sum is A191090. All sums have at most 6 terms for n <= 1000. Is this the largest possible value? For n up to 1000, only 39, 55, 143, 543, and 564 need 6 terms.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
The sum for 30 gives the first sum having 5 terms: 4 + 4 + 4 + 9 + 9.
MATHEMATICA
Table[s=DeleteCases[#, 0]& /@ PowersRepresentations[n, 11, 2]; t=Last[Union[First /@ Union /@ s]]; Min @@ Length /@ Select[s, #[[1]] == t &], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Jul 21 2011
STATUS
approved