cp's OEIS Frontend

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.

A059860 a(n) = binomial(n+1, 2)^5.

This page as a plain text file.
%I A059860 #35 Jul 02 2025 16:02:01
%S A059860 1,243,7776,100000,759375,4084101,17210368,60466176,184528125,
%T A059860 503284375,1252332576,2887174368,6240321451,12762815625,24883200000,
%U A059860 46525874176,83841135993,146211169851,247609900000,408410100000,657748550151,1036579476493,1601568101376
%N A059860 a(n) = binomial(n+1, 2)^5.
%C A059860 Number of 5-dimensional cage assemblies.
%C A059860 See Chap. 61, "Hyperspace Prisons", of C. Pickover's book "Wonders of Numbers" for full explanation of "cage numbers."
%D A059860 Clifford A. Pickover, Wonders of Numbers, Oxford University Press, 2001, p. 325.
%H A059860 Harry J. Smith, <a href="/A059860/b059860.txt">Table of n, a(n) for n = 1..1000</a>
%H A059860 Clifford A. Pickover, "Wonders of Numbers, Adventures in Mathematics, Mind and Meaning," <a href="http://www.zentralblatt-math.org/zmath/en/search/?q=an:0983.00008&amp;format=complete">Zentralblatt review</a>.
%H A059860 <a href="/index/Rec#order_11">Index entries for linear recurrences with constant coefficients</a>, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1).
%F A059860 L(n) = ((n^m)(n + 1)^m)/(2^m) where m is the dimension.
%F A059860 G.f.: x * (x^8 +232*x^7 +5158*x^6+ 27664*x^5 +47290*x^4 +27664*x^3 +5158*x^2 +232*x +1) / (1-x)^11. - _Colin Barker_, Jun 28 2012
%F A059860 From _Amiram Eldar_, May 15 2022: (Start)
%F A059860 Sum_{n>=1} 1/a(n) = 4032 - 1120*Pi^2/3 - 32*Pi^4/9.
%F A059860 Sum_{n>=1} (-1)^(n+1)/a(n) = 4480*log(2) + 720*zeta(3) + 60*zeta(5) - 4032. (End)
%p A059860 for n from 1 to 100 do printf(`%d,`,((n^5)*(n + 1)^5)/(2^5) ) od:
%p A059860 with (combinat):seq(mul(stirling2(n+1,n),k=1..5),n=1..21); # _Zerinvary Lajos_, Dec 14 2007
%t A059860 m = 5; Table[ ( (n^m)(n + 1)^m )/(2^m), {n, 1, 26} ]
%t A059860 Table[Binomial[n+1,2]^5,{n,20}] (* _Harvey P. Dale_, May 04 2018 *)
%o A059860 (PARI) a(n) = { (n*(n + 1)/2)^5 } \\ _Harry J. Smith_, Jun 29 2009
%Y A059860 Cf. A059827.
%K A059860 easy,nonn
%O A059860 1,2
%A A059860 _Jason Earls_, Feb 28 2001
%E A059860 More terms from _James Sellers_, Feb 28 2001
%E A059860 Better definition from _Zerinvary Lajos_, May 23 2006
%E A059860 Corrected the definition from binomial(n+2,2)^5 to binomial(n+1,2)^5. - _Harry J. Smith_, Jun 29 2009