cp's OEIS Frontend

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.

A112353 Triangular numbers that are the sum of three distinct positive triangular numbers.

This page as a plain text file.
%I A112353 #7 May 19 2019 02:14:24
%S A112353 10,28,45,55,66,91,105,120,136,153,171,190,210,231,253,276,300,325,
%T A112353 351,378,406,435,465,496,528,561,595,630,666,703,741,780,820,861,903,
%U A112353 946,990,1035,1081,1128,1176,1225,1275,1326,1378,1431,1485
%N A112353 Triangular numbers that are the sum of three distinct positive triangular numbers.
%C A112353 Subsequence of A112355: it doesn't require the three positive triangular numbers to be distinct.
%e A112353 45 is a term because 45 = 3 + 6 + 36 and these four numbers are distinct triangular numbers (A000217(9) = A000217(2) + A000217(3) + A000217(8)).
%t A112353 trnos=Accumulate[Range[200]];
%t A112353 Take[Union[Select[Total/@Subsets[trnos,{3}],MemberQ[trnos,#]&]],50]  (* _Harvey P. Dale_, Jan 15 2011 *)
%Y A112353 Cf. A000217 (triangular numbers), A112352 (triangular numbers that are the sum of two distinct positive triangular numbers), A112355.
%K A112353 nonn
%O A112353 1,1
%A A112353 _Rick L. Shepherd_, Sep 05 2005