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 A143272 #11 Mar 11 2019 03:07:03 %S A143272 1,6,12,30,30,84,56,144,135,220,132,468,182,420,480,680,306,1026,380, %T A143272 1260,924,1012,552,2400,975,1404,1512,2436,870,3720,992,3168,2244, %U A143272 2380,2520,5994,1406,2964,3120,6560,1722,7224,1892,5940,6210,4324,2256,11760 %N A143272 a(n) = d(n)*T(n), where d(n) is the number of divisors of n (A000005) and T(n)=n(n+1)/2 are the triangular numbers (A000217). %H A143272 Harvey P. Dale, <a href="/A143272/b143272.txt">Table of n, a(n) for n = 1..1000</a> %F A143272 Equals row sums of triangle A143271 %e A143272 a(4) = 30 = d(4)*T(4) = 3*10, where A000005 = (1, 2, 2, 3, 2, 4, ...) and A000217 = (1, 3, 6, 10, ...). %p A143272 with(numtheory): seq((1/2)*tau(n)*n*(n+1),n=1..50); # _Emeric Deutsch_, Aug 16 2008 %t A143272 Table[DivisorSigma[0,n] (n(n+1))/2,{n,50}] (* _Harvey P. Dale_, Sep 05 2017 *) %o A143272 (PARI) a(n) = numdiv(n)*n*(n+1)/2; \\ _Michel Marcus_, Mar 11 2019 %Y A143272 Cf. A143271, A000005, A000217. %K A143272 nonn %O A143272 1,2 %A A143272 _Gary W. Adamson_, Aug 03 2008 %E A143272 Extended by _Emeric Deutsch_, Aug 16 2008