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.

A253652 Triangular numbers that are the product of a triangular number and an oblong number.

Original entry on oeis.org

0, 6, 36, 120, 210, 300, 630, 1176, 2016, 3240, 3570, 4950, 7140, 7260, 10296, 14196, 19110, 23436, 25200, 32640, 39060, 41616, 52326, 61776, 64980, 79800, 97020, 116886, 139656, 145530, 165600, 195000, 228150, 242556, 265356, 304590, 306936, 349866, 353220, 404550, 426426, 461280
Offset: 1

Views

Author

Antonio Roldán, Jan 07 2015

Keywords

Comments

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).

Examples

			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.
		

Crossrefs

Programs

  • PARI
    {i=0;j=1;print1(0,", ");while(i<=10^6,k=1;p=2;c=0;while(k0,c=k);if(c>0,print1(i,", "));k+=p;p+=1);i+=j;j+=1)}