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.

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

Original entry on oeis.org

1, 2, 6, 26, 110, 532, 2541, 12644, 63024, 318857, 1618947, 8277062, 42453073, 218597485, 1128527057, 5841301830, 30297014746, 157442596130, 819511659381, 4272054888643, 22299423992018, 116539878029773, 609718298887977, 3193136462042241, 16737951567806110
Offset: 1

Views

Author

Alois P. Heinz, Aug 18 2012

Keywords

Crossrefs

Main diagonal of A022818.
Cf. A008485.

Programs

  • Maple
    A:= proc(n, k) option remember;
          `if`(k=1, 1, add(b(n, n, i)*A(i, k-1), i=0..n))
        end:
    b:= proc(n, i, k) option remember; `if`(n A(n, n):
    seq(a(n), n=1..40);
  • Mathematica
    A[n_, k_] := A[n, k] = If[k == 1, 1, Sum[b[n, n, i]*A[i, k-1], {i, 0, n}]]; b[n_, i_, k_] := b[n, i, k] = If[nJean-François Alcover, Feb 05 2015, after Alois P. Heinz *)

Formula

a(n) ~ c * d^n / sqrt(n), where d = A270915 = 5.35270133348664..., c = 0.0504640078963302151598181537452... . - Vaclav Kotesovec, Sep 03 2014, updated May 19 2018