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.

A076711 Highly composite triangular numbers: triangular numbers where the number of divisors increases to a record.

This page as a plain text file.
%I A076711 #22 Sep 20 2024 14:15:11
%S A076711 1,3,6,28,36,120,300,528,630,2016,3240,5460,25200,73920,157080,437580,
%T A076711 749700,1385280,1493856,2031120,2162160,17907120,76576500,103672800,
%U A076711 236215980,842161320,3090906000,4819214400,7589181600,7966312200,13674528000,20366564400
%N A076711 Highly composite triangular numbers: triangular numbers where the number of divisors increases to a record.
%H A076711 Charles R Greathouse IV and Donovan Johnson, <a href="/A076711/b076711.txt">Table of n, a(n) for n = 1..70</a> (terms < 10^23; first 55 terms from _Charles R Greathouse IV_).
%H A076711 Mark Dominus, <a href="http://blog.plover.com/oops/triangular-phi.html">More sawed-off shotguns</a>, 2007.
%H A076711 David Eppstein, <a href="https://11011110.github.io/blog/2007/04/05/triangular-numbers-with.html">Triangular numbers with many factors</a>, 2007.
%H A076711 Shyam Sunder Gupta <a href="http://www.shyamsundergupta.com/triangle.htm">Fascinating Triangular Numbers</a>.
%e A076711 a(4)=28: 28 is a triangular number and has 6 divisors. Number of divisors of all triangular numbers less than 28 is less than 6. So 28 is a highly composite triangular number.
%o A076711 (PARI) { my(r=0); for(n=1, 1e7, my(t=if(n%2, numdiv(n)*numdiv((n+1)/2), numdiv(n/2)*numdiv(n+1))); if(t>r, r=t; print1(n*(n+1)/2", "))) } \\ _Charles R Greathouse IV_, Feb 01 2013
%Y A076711 Cf. A101755, A101756.
%K A076711 nonn
%O A076711 1,2
%A A076711 _Shyam Sunder Gupta_, Oct 26 2002
%E A076711 Name clarified by _Andrew Howroyd_, Sep 20 2024