%I M0076 N0027 #41 Mar 29 2021 16:49:05
%S 1,1,1,2,1,1,2,2,1,2,2,1,3,2,1,2,3,2,2,2,1,4,3,2,2,2,2,3,3,1,4,4,2,2,
%T 3,2,3,4,2,3,3,2,4,3,2,4,4,2,4,4,1,4,5,1,2,3,4,6,4,3,2,5,2,3,3,3,6,5,
%U 2,2,5,3,5,4,2,4,5,3,4,5,2,4,6,2,6,3,3,6,3,2,3,7,3,6,6,2,4,6,3,2
%N Number of ways of writing n as an unordered sum of at most 3 nonzero triangular numbers.
%C Fermat asserted that every number is the sum of three triangular numbers. This was proved by Gauss, who recorded in his Tagebuch entry for Jul 10 1796 that: EYPHKA! num = DELTA + DELTA + DELTA.
%C a(n) <= A167618(n). - _Reinhard Zumkeller_, Nov 07 2009
%C Equivalently, number of ways of writing n as an unordered sum of exactly 3 triangular numbers. - _Jon E. Schoenfield_, Mar 28 2021
%D J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 102, eq. (8).
%D D. H. Lehmer, Review of Loria article, Math. Comp. 2 (1947), 301-302.
%D G. Loria, Sulla scomposizione di un intero nella somma di numeri poligonali. (Italian) Atti Accad. Naz. Lincei. Rend. Cl. Sci. Fis. Mat. Nat. (8) 1, (1946). 7-15.
%D Mel Nathanson, Additive Number Theory: The Classical Bases, Graduate Texts in Mathematics, Volume 165, Springer-Verlag, 1996. See Chapter 1.
%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H T. D. Noe, <a href="/A002636/b002636.txt">Table of n, a(n) for n = 0..10000</a>
%H Gino Loria, <a href="/A002635/a002635.pdf"> Sulla scomposizione di un intero nella somma di numeri poligonali. (Italian).</a> Atti Accad. Naz. Lincei. Rend. Cl. Sci. Fis. Mat. Nat. (8) 1, (1946). 7-15. Also D. H. Lehmer, Review of Loria article, Math. Comp. 2 (1947), 301-302. [Annotated scanned copies]
%H Eric T. Mortenson, <a href="https://arxiv.org/abs/1702.01627">A Kronecker-type identity and the representations of a number as a sum of three squares</a>, arXiv:1702.01627 [math.NT], 2017.
%H James A. Sellers, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL7/Sellers/sellers58.html">Partitions Excluding Specific Polygonal Numbers As Parts</a>, Journal of Integer Sequences, Vol. 7 (2004), Article 04.2.4.
%e 0 : empty sum
%e 1 : 1
%e 2 : 1+1
%e 3 : 3 = 1+1+1
%e 4 : 3+1
%e 5 : 3+1+1
%e 6 : 6 = 3+3
%e 7 : 6+1 = 3+3+1
%e ...
%e 13 : 10 + 3 = 6 + 6 + 1, so a(13) = 2.
%t a = Table[ n(n + 1)/2, {n, 0, 15} ]; b = {0}; c = Table[ 0, {100} ]; Do[ b = Append[ b, a[ [ i ] ] + a[ [ j ] ] + a[ [ k ] ] ], {k, 1, 15}, {j, 1, k}, {i, 1, j} ]; b = Delete[ b, 1 ]; b = Sort[ b ]; l = Length[ b ]; Do[ If[ b[ [ n ] ] < 100, c[ [ b[ [ n ] ] + 1 ] ]++ ], {n, 1, l} ]; c
%o (PARI) first(n)=my(v=vector(n+1),A,B,C); for(a=0,n, A=a*(a+1)/2; if(A>n, break); for(b=0,a, B=A+b*(b+1)/2; if(B>n, break); for(c=0,b, C=B+c*(c+1)/2; if(C>n, break); v[C+1]++))); v \\ _Charles R Greathouse IV_, Jun 23 2017
%Y Cf. A007294, A053604, A008443, A063993, A061262.
%K nonn,easy,nice
%O 0,4
%A _N. J. A. Sloane_, Sep 18 2001
%E More terms from _Robert G. Wilson v_, Sep 20 2001
%E Entry revised by _N. J. A. Sloane_, Feb 25 2007