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 A022813 #18 Jul 19 2018 12:08:40 %S A022813 1,1,5,15,45,110,271,599,1309,2690,5436,10545,20148,37341,68223, %T A022813 121878,214846,371993,636570,1073325,1790721,2950922,4816603,7778937, %U A022813 12455988,19761148,31108121,48572686,75307513,115909727,177255526,269294119,406708721,610593948 %N A022813 Number of terms in n-th derivative of a function composed with itself 5 times. %D A022813 W. C. Yang (yang(AT)math.wisc.edu), Derivatives of self-compositions of functions, preprint, 1997. %H A022813 Alois P. Heinz, <a href="/A022813/b022813.txt">Table of n, a(n) for n = 0..1000</a> %H A022813 W. C. Yang, <a href="http://dx.doi.org/10.1016/S0012-365X(99)00412-4">Derivatives are essentially integer partitions</a>, Discrete Mathematics, 222(1-3), July 2000, 235-245. %F A022813 If a(n,m) = number of terms in m-derivative of a function composed with itself n times, p(n,k) = number of partitions of n into k parts, then a(n,m) = sum_{i=0..m} p(m,i)*a(n-1,i). %t A022813 b[n_, i_, k_] := b[n, i, k] = If[n<k, 0, If[n==0, 1, If[i<1, 0, Sum[b[n-i*j, i-1, k-j], {j, 0, Min[n/i, k]}]]]]; %t A022813 a[n_, k_] := a[n, k] = If[k==1, 1, Sum[b[n, n, i]*a[i, k-1], {i, 0, n}]]; %t A022813 a[n_]:=a[n, 5];Table[a[n], {n, 0, 40}] (* _Jean-François Alcover_, Apr 28 2017, after _Alois P. Heinz_ *) %Y A022813 Cf. A008778, A022811-A022818, A024207-A024210. First column of A039807. %K A022813 nonn %O A022813 0,3 %A A022813 Winston C. Yang (yang(AT)math.wisc.edu)