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