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 A054563 #47 Jul 09 2025 11:00:44 %S A054563 0,0,6,45,190,595,1540,3486,7140,13530,24090,40755,66066,103285, %T A054563 156520,230860,332520,468996,649230,883785,1185030,1567335,2047276, %U A054563 2643850,3378700,4276350,5364450,6674031,8239770,10100265,12298320,14881240 %N A054563 a(n) = n*(n^2 - 1)*(n + 2)*(n^2 + 4*n + 6)/72. %C A054563 Number of labeled pure 2-complexes on n nodes with 2 2-simplexes. %D A054563 L. Berzolari, Allgemeine Theorie der Höheren Ebenen Algebraischen Kurven, Encyclopädie der Mathematischen Wissenschaften mit Einschluss ihrer Anwendungen. Band III_2. Heft 3, Leipzig: B. G. Teubner, 1906. p. 353. %H A054563 Vincenzo Librandi, <a href="/A054563/b054563.txt">Table of n, a(n) for n = 0..10000</a> %H A054563 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (7,-21,35,-35,21,-7,1). %F A054563 C(C(n, 3), 2) = 6*C(n, 4) + 15*C(n, 5) + 10*C(n, 6) = n*(n-1)*(n-2)*(n-3)*(n^2+2)/72 = a(n-2). %F A054563 a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7); a(2)=0, a(3)=0, a(4)=6, a(5)=45, a(6)=190, a(7)=595, a(8)=1540. - _Harvey P. Dale_, Sep 20 2011 %F A054563 G.f.: -((x^2*(x*(x+3)+6))/(x-1)^7). - _Harvey P. Dale_, Sep 20 2011 %F A054563 a(n) = (binomial(n+2,3)^2 - binomial(n+2,3))/2, n > 0. - _Gary Detlefs_, Nov 23 2011 %F A054563 a(n) = Sum_{k=1..3} (-1)^(k+1)*binomial(n+2,3+k)*binomial(n+2,3-k). - _Gerry Martens_, Oct 11 2022 %F A054563 a(n) = A373733(n) - A000292(n). - _J.S. Seneschal_, Jul 08 2025 %F A054563 E.g.f.: exp(x)*x^2*(216 + 324*x + 138*x^2 + 21*x^3 + x^4)/72. - _Stefano Spezia_, Jul 09 2025 %t A054563 Binomial[Binomial[Range[2,40],3],2] (* or *) LinearRecurrence[ {7,-21,35,-35,21,-7,1},{0,0,6,45,190,595,1540},40] (* _Harvey P. Dale_, Sep 20 2011 *) %o A054563 (Sage) [(binomial(binomial(n,3),2)) for n in range(2, 34)] # _Zerinvary Lajos_, Nov 30 2009 %o A054563 (Magma) [n*(n^2 - 1)*(n + 2)*(n^2 + 4*n + 6)/72: n in [0..40]]; // _Vincenzo Librandi_, Sep 21 2011 %o A054563 (PARI) a(n)=n*(n^2-1)*(n+2)*(n^2+4*n+6)/72 \\ _Charles R Greathouse IV_, Feb 19 2017 %Y A054563 Cf. A000217, A000292, A373733. %K A054563 easy,nonn,nice %O A054563 0,3 %A A054563 _Vladeta Jovovic_, Apr 10 2000 %E A054563 More terms from _James Sellers_, Apr 11 2000 %E A054563 Offset changed from 2 to 0 by _Vincenzo Librandi_, Sep 21 2011