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!)
A286304 Number of connected induced (non-null) subgraphs of the complete binary tree with n nodes. 2

%I #30 Aug 24 2022 09:35:48

%S 1,3,6,10,17,24,37,51,78,110,173,229,340,477,750,1024,1571,2253,3616,

%T 5024,7839,11356,18389,25173,38740,55697,89610,124870,195389,283536,

%U 459829,636123,988710,1429442,2310905,3227617,5061040,7352817,11936370,16526444

%N Number of connected induced (non-null) subgraphs of the complete binary tree with n nodes.

%H Alois P. Heinz, <a href="/A286304/b286304.txt">Table of n, a(n) for n = 1..5651</a> (first 255 terms from Andrew Howroyd)

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Vertex-InducedSubgraph.html">Vertex-Induced Subgraph</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Binary_tree#Types_of_binary_trees">Types of binary trees</a>

%F a(2^k-1) = A285934(k-1).

%t Join[{1}, Table[g=KaryTree[n]; -1 + ParallelSum[Boole@ConnectedGraphQ@Subgraph[g, s], {s, Subsets@Range[n]}], {n, 2, 16}]]

%t (* Second program: *)

%t l[n_] := With[{h = 2^Floor[Log[2, n]]}, Min[h - 1, n - h/2]];

%t b[n_] := b[n] = 1 + If[n <= 1, n, b[l[n]]*b[n - 1 - l[n]]];

%t a[n_] := a[n] = If[n <= 1, n, b[n] - 1 + a[l[n]] + a[n - 1 - l[n]]];

%t Array[a, 40] (* _Jean-François Alcover_, Nov 01 2017, after _Andrew Howroyd_ *)

%o (PARI)

%o l(n)={my(h=2^floor(log(n)/log(2))); min(h-1,n-h/2)}

%o b(n)=1+if(n<=1,n,b(l(n))*b(n-1-l(n)));

%o a(n)=if(n<=1,n,b(n)-1 + a(l(n)) + a(n-1-l(n))); \\ _Andrew Howroyd_, May 22 2017

%Y Cf. A285934, A020873 (wheel), A059020 (ladder), A059525 (grid), A286139 (king), A286182 (prism), A286183 (antiprism), A286184 (helm), A286185 (Möbius ladder), A286186 (friendship), A286187 (web), A286188 (gear), A286189 (rook), A285765 (queen).

%K nonn

%O 1,2

%A _Giovanni Resta_, May 05 2017

%E Terms a(35) and beyond from _Andrew Howroyd_, May 22 2017

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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)