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 A021012 #37 Aug 14 2022 16:04:39 %S A021012 1,1,-1,2,-4,2,6,-18,18,-6,24,-96,144,-96,24,120,-600,1200,-1200,600, %T A021012 -120,720,-4320,10800,-14400,10800,-4320,720,5040,-35280,105840, %U A021012 -176400,176400,-105840,35280,-5040,40320,-322560,1128960,-2257920,2822400,-2257920,1128960,-322560,40320,362880,-3265920 %N A021012 Triangle of coefficients in expansion of x^n in terms of Laguerre polynomials L_n(x). %C A021012 Triangle T(n,k), read by rows: given by [1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, ...] DELTA [ -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, ...], where DELTA is the operator defined in A084938. - _Philippe Deléham_, Feb 14 2005 %D A021012 M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 799. %H A021012 G. C. Greubel, <a href="/A021012/b021012.txt">Table of n, a(n) for the first 50 rows, flattened</a> %H A021012 M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy]. %H A021012 <a href="/index/La#Laguerre">Index entries for sequences related to Laguerre polynomials</a> %F A021012 T(n, k) = (-1)^k*n!*binomial(n, k). - _Vladeta Jovovic_, May 11 2003 %F A021012 Sum_{k>=0} T(n, k)*T(m, k) = (n+m)!. - _Philippe Deléham_, Feb 14 2005 %F A021012 Unsigned sequence = A136572 * A007318 - _Gary W. Adamson_, Jan 07 2008 %F A021012 A136572*PS, where PS is a triangle with PS[n,k] = (-1)^k*A007318[n,k]. PS = 1/PS. - _Gerald McGarvey_, Aug 20 2009 %e A021012 Triangle begins: %e A021012 1; %e A021012 1, -1; %e A021012 2, -4, 2; %e A021012 6, -18, 18, -6; %e A021012 24, -96, 144, -96, 24; %e A021012 ... %e A021012 x^3 = 6*LaguerreL(0,x) - 18*LaguerreL(1,x) + 18*LaguerreL(2,x) - 6*LaguerreL(3,x). %t A021012 row[n_] := Table[ a[n, k], {k, 0, n}] /. SolveAlways[ x^n == Sum[ a[n, k]*LaguerreL[k, x], {k, 0, n}], x] // First; (* or, after _Vladeta Jovovic_: *) row[n_] := Table[(-1)^k*n!*Binomial[n, k], {k, 0, n}]; Table[ row[n], {n, 0, 9}] // Flatten (* _Jean-François Alcover_, Oct 05 2012 *) %o A021012 (PARI) for(n=0,10, for(k=0,n, print1((-1)^k*n!*binomial(n,k), ", "))) \\ _G. C. Greubel_, Feb 06 2018 %o A021012 (Magma) [[(-1)^k*Factorial(n)*Binomial(n,k): k in [0..n]]: n in [0..10]]; // _G. C. Greubel_, Feb 06 2018 %Y A021012 Columns include (essentially) A000142, A001563, A001804, A001805, A001806, A001807. %Y A021012 Cf. A000165 (row sum of absolute values). %Y A021012 Cf. A136572. %K A021012 sign,tabl,easy,nice %O A021012 0,4 %A A021012 _N. J. A. Sloane_ %E A021012 More terms from _Vladeta Jovovic_, May 11 2003