A285934 Number of connected induced (non-null) subgraphs of the perfect binary tree of height n.
1, 6, 37, 750, 459829, 210067308558, 44127887746326310604917, 1947270476915296449559791701269341583074001038
Offset: 0
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..11
- Eric Weisstein's World of Mathematics, Vertex-Induced Subgraph
- Wikipedia, Types of binary trees
Crossrefs
Programs
-
Mathematica
a[1]=b[1]=1; b[n_] := b[n] = 1 + b[n - 1]^2; a[n_] := a[n] = b[n]^2 + 2 a[n - 1]; Array[a, 8]
Formula
Let b(0)=1 and b(n) = 1+b(n-1)^2. Then, a(0)=1 and a(n) = b(n)^2 + 2*a(n-1). Note that b(n) = A003095(n+1).
Comments