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 A145455 #14 Nov 21 2017 02:42:23 %S A145455 1,0,0,0,0,1,6,21,56,126,378,3234,34056,289575,2020018,12237225, %T A145455 70634928,468041756,4190274648,45557515620,499503011496,5121432107757, %U A145455 49183015347774,462331794763069,4579813478536296,50959878972009546 %N A145455 Exponential transform of C(n,5) = A000389. %C A145455 a(n) is the number of ways of placing n labeled balls into indistinguishable boxes, where in each filled box 5 balls are seen at the top. %C A145455 a(n) is also the number of forests of labeled rooted trees of height at most 1, with n labels, where each root contains 5 labels. %H A145455 Alois P. Heinz, <a href="/A145455/b145455.txt">Table of n, a(n) for n = 0..500</a> %H A145455 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %H A145455 <a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a> %F A145455 E.g.f.: exp(exp(x)*x^5/5!). %p A145455 a:= proc(n) option remember; `if`(n=0, 1, %p A145455 add(binomial(n-1, j-1) *binomial(j,5) *a(n-j), j=1..n)) %p A145455 end: %p A145455 seq(a(n), n=0..30); %t A145455 With[{nmax = 50}, CoefficientList[Series[Exp[Exp[x]*x^5/5!], {x, 0, nmax}], x]] (* _G. C. Greubel_, Nov 21 2017 *) %o A145455 (PARI) x='x+O('x^30); Vec(serlaplace(exp(exp(x)*x^5/5!))) \\ _G. C. Greubel_, Nov 21 2017 %Y A145455 5th column of A145460, A143398. %K A145455 nonn %O A145455 0,7 %A A145455 _Alois P. Heinz_, Oct 10 2008