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!)
A124973 a(n) = Sum_{k=0..(n-2)/2} a(k)a*(n-1-k), with a(0) = a(1) = 1. 4

%I #12 Feb 22 2021 03:36:12

%S 1,1,1,1,2,3,6,11,22,42,87,174,365,745,1587,3303,7103,14974,32477,

%T 69284,151172,325077,713400,1545719,3406989,7423648,16429555,35992438,

%U 79912474,175785514,391488688,864591621,1930333822,4276537000

%N a(n) = Sum_{k=0..(n-2)/2} a(k)a*(n-1-k), with a(0) = a(1) = 1.

%C Number of unordered rooted trees with all outdegrees <= 2 and, if a node has two subtrees, they have a different number of nodes (equivalently, ordered rooted trees where the left subtree has more nodes than the right subtree).

%H G. C. Greubel, <a href="/A124973/b124973.txt">Table of n, a(n) for n = 0..1000</a>

%F Lim_{n->infinity} a(n)^(1/n) = 2.327833478... - _Vaclav Kotesovec_, Nov 20 2019

%p a:= proc(n) option remember;

%p if n<2 then 1

%p else add(a(j)*a(n-j-1), j=0..floor((n-2)/2))

%p fi

%p end:

%p seq(a(n), n=0..40); # _G. C. Greubel_, Nov 19 2019

%t a[n_]:= a[n]= If[n<2, 1, Sum[a[j]*a[n-j-1], {j, 0, (n-2)/2}]]; Table[a[n], {n, 0, 40}] (* _G. C. Greubel_, Nov 19 2019 *)

%o (PARI) a(n) = if(n<2, 1, sum(j=0, (n-2)\2, a(j)*a(n-j-1))); \\ _G. C. Greubel_, Nov 19 2019

%o (Sage)

%o @CachedFunction

%o def a(n):

%o if (n<2): return 1

%o else: return sum(a(j)*a(n-j-1) for j in (0..floor((n-2)/2)))

%o [a(n) for n in (0..40)] # _G. C. Greubel_, Nov 19 2019

%Y Cf. A000108, A000992, A001190, A032305.

%K easy,nonn

%O 0,5

%A _Franklin T. Adams-Watters_, Nov 14 2006

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 April 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)