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 A344054 #10 May 11 2021 15:32:06 %S A344054 0,0,1,8,64,540,4920,48720,524160,6108480,76809600,1037836800, %T A344054 15008716800,231437606400,3792255667200,65819609856000, %U A344054 1206547550208000,23297526540288000,472708591939584000,10055994967130112000,223826984752250880000,5202760944485744640000,126075414965721661440000,3179798058882852126720000,83346901966165164687360000,2267221868000212451328000000 %N A344054 a(n) = Sum_{k = 0..n} E1(n, k)*k^2, where E1 are the Eulerian numbers A173018. %C A344054 The Eulerian transform of the squares. %F A344054 a(n) = n! * [x^n] x^2*(-x^2 + x - 3)/(6*(x - 1)^3). %F A344054 a(n) = Sum_{k=0..n} Sum_{j=0..k} (-1)^j*binomial(n + 1, j)*k^2*(k + 1 - j)^n. %F A344054 a(n) = ((n - 3)*(n - 1)*(23*n - 44)*a(n-2) + ((159 - 7*n)*n - 286)*a(n-1))/(16*(n - 2)) for n >= 3. %p A344054 a := n -> add(combinat[eulerian1](n, k)*k^2, k = 0..n): %p A344054 # Recurrence: %p A344054 a := proc(n) option remember; if n < 2 then 0 elif n = 2 then 1 else %p A344054 ((n-3)*(n-1)*(23*n-44)*a(n-2) + ((159 - 7*n)*n - 286)*a(n-1))/(16*(n - 2)) fi end: %p A344054 seq(a(n), n = 0..29); %t A344054 a[n_] := Sum[Sum[(-1)^j Binomial[n + 1, j] k^2 (k + 1 - j)^n, {j,0,k}], {k,0,n}]; a[0] := 0; Table[a[n], {n, 0, 25}] %o A344054 (SageMath) %o A344054 def aList(len): %o A344054 R.<x> = PowerSeriesRing(QQ, default_prec=len+2) %o A344054 f = x^2*(-x^2 + x - 3)/(6*(x - 1)^3) %o A344054 return f.egf_to_ogf().list()[:len] %o A344054 print(aList(20)) %Y A344054 Transforms of the squares: A151881 (StirlingCycle), A033452 (StirlingSet), A105219 (Laguerre), A103194 (Lah), A065096 (SchröderBig), A083411 (Fubini), A141222 (Narayana), A000330 (Units A000012). %Y A344054 Cf. A173018. %K A344054 nonn %O A344054 0,4 %A A344054 _Peter Luschny_, May 11 2021