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.

Showing 1-3 of 3 results.

A024207 Number of terms in n-th derivative of a function composed with itself 7 times.

Original entry on oeis.org

1, 1, 7, 28, 105, 322, 952, 2541, 6539, 15833, 37148, 83594, 183289, 389520, 809820, 1643375, 3272797, 6390745, 12279337, 23208483, 43252360, 79483096, 144265338, 258673983, 458747540, 804877837, 1398356706, 2406328974, 4104352128, 6940717598, 11643270856
Offset: 0

Views

Author

Winston C. Yang (yang(AT)math.wisc.edu)

Keywords

References

  • W. C. Yang (yang(AT)math.wisc.edu), Derivatives of self-compositions of functions, preprint, 1997.

Crossrefs

Cf. A008778, A022811-A022817, A024208-A024210. First column of A050301.
Column k=7 of A022818.

Programs

  • Mathematica
    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]}]]]];
    a[n_, k_] := a[n, k] = If[k == 1, 1, Sum[b[n, n, i]*a[i, k-1], {i, 0, n}]];
    a[n_] := a[n, 7];
    Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Apr 28 2017, after Alois P. Heinz *)

Formula

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).

Extensions

More terms from Alois P. Heinz, Aug 18 2012

A050300 Matrix 6th power of partition triangle A008284.

Original entry on oeis.org

1, 6, 1, 21, 6, 1, 71, 27, 6, 1, 196, 92, 27, 6, 1, 532, 288, 98, 27, 6, 1, 1301, 799, 309, 98, 27, 6, 1, 3101, 2100, 891, 315, 98, 27, 6, 1, 6956, 5145, 2373, 912, 315, 98, 27, 6, 1, 15217, 12121, 5980, 2465, 918, 315, 98, 27, 6, 1, 31951, 27247, 14292, 6253
Offset: 1

Views

Author

Christian G. Bower, Aug 15 1999

Keywords

Examples

			1; 6,1; 21,6,1; 71,27,6,1; ...
		

Crossrefs

Cf. A038497, A038498, A039805-A039807. A050301-A050304. a(n, 1) = A022814(n) (first column).

A050302 Matrix 8th power of partition triangle A008284.

Original entry on oeis.org

1, 8, 1, 36, 8, 1, 148, 44, 8, 1, 498, 184, 44, 8, 1, 1590, 682, 192, 44, 8, 1, 4586, 2236, 718, 192, 44, 8, 1, 12644, 6822, 2420, 726, 192, 44, 8, 1, 32775, 19346, 7476, 2456, 726, 192, 44, 8, 1, 81901, 52177, 21646, 7660, 2464, 726, 192, 44, 8, 1, 196085
Offset: 1

Views

Author

Christian G. Bower, Aug 15 1999

Keywords

Examples

			1; 8,1; 36,8,1; 148,44,8,1; ...
		

Crossrefs

Cf. A038497, A038498, A039805-A039807. A050301-A050304. a(n, 1) = A024208(n) (first column).
Showing 1-3 of 3 results.