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.

A218143 a(n) = Stirling2(n*(n+1)/2, n).

This page as a plain text file.
%I A218143 #14 May 11 2014 16:42:35
%S A218143 1,1,3,90,34105,210766920,26585679462804,82892803728383735268,
%T A218143 7529580759157036060608585183,22982258052528294182955639980819773510,
%U A218143 2672446997421818663856559987803834697952486978300,13239043631590111512460321918828937597837325561187113535696980
%N A218143 a(n) = Stirling2(n*(n+1)/2, n).
%H A218143 Paul D. Hanna, <a href="/A218143/b218143.txt">Table of n, a(n) for n = 0..30</a>
%F A218143 a(n) = [x^(n*(n-1)/2)] 1 / Product_{k=1..n} (1-k*x).
%F A218143 a(n) ~ n^(n*(n+1)/2)/n!. - _Vaclav Kotesovec_, May 11 2014
%e A218143 O.g.f.: A(x) = 1 + x + 3*x^2 + 90*x^3 + 34105*x^4 + 210766920*x^5 + 26585679462804*x^6 +...
%t A218143 Table[StirlingS2[n*(n+1)/2, n],{n,0,10}] (* _Vaclav Kotesovec_, May 11 2014 *)
%o A218143 (PARI) {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(n*(n-1)/2))), n*(n-1)/2)}
%o A218143 (PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
%o A218143 {a(n) = Stirling2(n*(n+1)/2, n)}
%o A218143 for(n=0, 15, print1(a(n), ", "))
%o A218143 (Maxima) makelist(stirling2(n*(n+1)/2,n),n,0,30 ); /* _Martin Ettl_, Oct 21 2012 */
%Y A218143 Cf. A008277, A218141, A218142, A007820, A217913, A217914, A217915.
%K A218143 nonn
%O A218143 0,3
%A A218143 _Paul D. Hanna_, Oct 21 2012