login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A087959 G.f. satisfies A(x) = 1 + x*A(x*A(x*A(x))). 1
1, 1, 1, 2, 6, 22, 95, 463, 2483, 14426, 89799, 594038, 4150514, 30482791, 234428282, 1881944298, 15729230166, 136566166388, 1229346044429, 11454129882773, 110293243452027, 1096078120808889, 11227947692444477, 118421577443291274, 1284625091089249880 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
A:= proc(n) option remember; local T; if n=0 then 1 else T:= A(n-1); unapply(convert(series(1+ x*T(x*T(x*T(x))), x, n+1), polynom), x) fi end: a:= n-> coeff(A(n)(x), x, n): seq(a(n), n=0..21); # Alois P. Heinz, Aug 23 2008
MATHEMATICA
A[n_] := A[n] = Module[{T}, If[n == 0, 1, T[y_] = A[n-1][y]; Normal[Series[1+x*T[x*T[x*T[x]]], {x, 0, n+1}]] /. x -> #]&]; a[n_] := Coefficient[A[n][x], x, n]; Table [a[n], {n, 0, 24}] (* Jean-François Alcover, Feb 14 2014, after Alois P. Heinz *)
CROSSREFS
Cf. A087949.
Sequence in context: A193763 A301385 A093793 * A292096 A006871 A268699
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 16 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 5 18:14 EDT 2024. Contains 374027 sequences. (Running on oeis4.)