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 A253652 #11 Jan 15 2015 13:30:10 %S A253652 0,6,36,120,210,300,630,1176,2016,3240,3570,4950,7140,7260,10296, %T A253652 14196,19110,23436,25200,32640,39060,41616,52326,61776,64980,79800, %U A253652 97020,116886,139656,145530,165600,195000,228150,242556,265356,304590,306936,349866,353220,404550,426426,461280 %N A253652 Triangular numbers that are the product of a triangular number and an oblong number. %C A253652 Supersequence of A083374, because A083374(n)= n^2 * (n^2 - 1)/2 = n*(n+1)/2*n*(n-1), product of triangular number n*(n+1)/2 and oblong number n*(n-1). %e A253652 630 is in the sequence because it is a triangular number (630 = 35*36/2) and 630 = 105*6, with 105 = 14*15/2, triangular number, and 6 = 2*3, oblong number. %o A253652 (PARI) {i=0;j=1;print1(0,", ");while(i<=10^6,k=1;p=2;c=0;while(k<i&&c==0,if(i/k==i\k&&issquare(4*(i/k)+1)&&k>0,c=k);if(c>0,print1(i,", "));k+=p;p+=1);i+=j;j+=1)} %Y A253652 Cf. A002378, A000217, A188630, A083374, A253650, A253651, A253653. %K A253652 nonn %O A253652 1,2 %A A253652 _Antonio Roldán_, Jan 07 2015