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 A136426 #6 Feb 16 2025 08:33:07 %S A136426 0,0,-1,0,-1,-2,0,-2,-6,-3,0,-6,-22,-18,-4,0,-24,-100,-105,-40,-5,0, %T A136426 -120,-548,-675,-340,-75,-6,0,-720,-3528,-4872,-2940,-875,-126,-7,0, %U A136426 -5040,-26136,-39396,-27076,-9800,-1932,-196,-8,0,-40320,-219168,-354372,-269136,-112245,-27216,-3822,-288,-9,0,-362880 %N A136426 Triangle T(n,0)=0 and T(n,k) = -A028421(n-1,k-1), 0<k<=n. %C A136426 Row sums are -A000254(n). %H A136426 J. Sondow, Eric W. Weisstein, <a href="https://mathworld.wolfram.com/HarmonicNumber.html">Harmonic Number</a>, MathWorld %e A136426 0; %e A136426 0, -1; %e A136426 0, -1, -2; %e A136426 0, -2, -6, -3; %e A136426 0, -6, -22, -18, -4; %e A136426 0, -24, -100, -105, -40, -5; %e A136426 0, -120, -548, -675, -340, -75, -6; %e A136426 0, -720, -3528, -4872, -2940, -875, -126, -7; %e A136426 0, -5040, -26136, -39396, -27076, -9800, -1932, -196, -8; %e A136426 0, -40320, -219168, -354372, -269136, -112245, -27216, -3822, -288, -9; %e A136426 0, -362880, -2053152, -3518100, -2894720, -1346625, -379638, -66150, -6960,-405, -10; %t A136426 Clear[p, g] p[t_] = x*Log[1 - t]/(1 - t)^x; g = Table[ ExpandAll[n!SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]], {n, 0, 10}]; a = Table[n!* CoefficientList[Simplify[SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]], x], {n, 0, 10}]; Flatten[a] %K A136426 tabl,sign %O A136426 1,6 %A A136426 _Roger L. Bagula_, Apr 13 2008