OFFSET
1,1
COMMENTS
It is conjectured that 7687 positive numbers are not the sum of three 10-gonal numbers.
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, D3.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..7687
R. K. Guy, Every number is expressible as the sum of how many polygonal numbers?, Amer. Math. Monthly 101 (1994), 169-172.
R. K. Guy, Every number is expressible as the sum of how many polygonal numbers?, Amer. Math. Monthly 101 (1994), 169-172.
MATHEMATICA
nn = 750; dec = Table[n*(4*n-3), {n, 0, nn}]; t = Table[0, {dec[[-1]]}]; Do[n = dec[[i]] + dec[[j]] + dec[[k]]; If[n <= dec[[-1]], t[[n]] = 1], {i, nn}, {j, i, nn}, {k, j, nn}]; Flatten[Position[t, 0]]
CROSSREFS
KEYWORD
nonn,fini
AUTHOR
T. D. Noe, Jul 17 2012
STATUS
approved