This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A213523 #9 Jul 06 2018 09:48:03 %S A213523 4,5,6,10,11,12,13,16,17,22,23,24,27,28,29,30,31,33,38,39,40,44,45,46, %T A213523 47,49,50,51,58,60,61,64,65,66,67,71,72,76,77,78,79,84,85,87,92,93,94, %U A213523 97,98,101,103,104,105,108,109,118,121,124,125,127,129,132 %N A213523 Numbers not representable as the sum of three heptagonal numbers. %C A213523 It is conjectured that 1348 positive numbers are not the sum of three heptagonal numbers. %D A213523 R. K. Guy, Unsolved Problems in Number Theory, D3. %H A213523 T. D. Noe, <a href="/A213523/b213523.txt">Table of n, a(n) for n = 1..1348</a> %H A213523 R. K. Guy, <a href="https://www.jstor.org/stable/2324367">Every number is expressible as the sum of how many polygonal numbers?</a>, Amer. Math. Monthly 101 (1994), 169-172. %t A213523 nn = 350; hep = Table[n*(5*n-3)/2, {n, 0, nn}]; t = Table[0, {hep[[-1]]}]; Do[n = hep[[i]] + hep[[j]] + hep[[k]]; If[n <= hep[[-1]], t[[n]] = 1], {i, nn}, {j, i, nn}, {k, j, nn}]; Flatten[Position[t, 0]] %Y A213523 Cf. A000566 (heptagonal numbers). %Y A213523 Cf. A118278, A118279. %K A213523 nonn,fini %O A213523 1,1 %A A213523 _T. D. Noe_, Jul 16 2012