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 A355660 #30 Jul 14 2022 11:21:12 %S A355660 4,8,16,19,20,26,30,33,38,42,50,54,60,65,67,77,81,84,88,90,96,99,100, %T A355660 101,111,112,113,120,125,131,135,138,142,154,159,160,166,170,171,183, %U A355660 195,204,205,207,217,224,225,226,229,230,236,240,241,243,255,265,275,277,286,306,308,345 %N A355660 Numbers m such that the smallest number of pentagonal numbers (A000326) which sum to m is exactly 4. %C A355660 Richard Blecksmith & John Selfridge found 204 such integers among the first million, the largest of which is 33066. They believe that they have found them all (Richard K. Guy reference). %C A355660 a(205) > 10^11, if it exists, from _Giovanni Resta_ in A003679. %D A355660 Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section D3, Figurate numbers, pp. 222-228. %H A355660 Richard K. Guy, <a href="http://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. %F A355660 A100878(a(n)) = 4. %e A355660 4 = 1 + 1 + 1 + 1. %e A355660 8 = 5 + 1 + 1 + 1. %e A355660 16 = 5 + 5 + 5 + 1. %e A355660 Also, it is not possible to get these terms when summing three or fewer pentagonal numbers. %t A355660 nn = 100; %t A355660 pen = Table[n (3n - 1)/2, {n, 0, nn - 1}]; %t A355660 lst = Range[pen[[-1]]]; %t A355660 Do[n = pen[[i]]+pen[[j]]+pen[[k]]; If[n <= pen[[-1]], lst = DeleteCases[lst, n]], {i, 1, nn}, {j, i, nn}, {k, j, nn}]; %t A355660 A003679 = lst; %t A355660 Complement[A003679, {9, 21, 31, 43, 55, 89}] (* _Jean-François Alcover_, Jul 13 2022, after _T. D. Noe_ in A003679 *) %Y A355660 Cf. A000326, A100878. %Y A355660 Equals A003679 \ A133929. %K A355660 nonn %O A355660 1,1 %A A355660 _Bernard Schott_, Jul 12 2022