login
A389371
Number of distinct branching structures with up to 3 branches per node after n generations.
0
1, 2, 4, 15, 576, 31850977, 5385388331425639629954, 26031537804569884381299734265433494980888832735504738666061548740
OFFSET
0,2
COMMENTS
This sequence models a simplified combinatorial growth of natural branching structures (e.g., trees, corals, or vascular networks). Each branch may split into 0, 1, 2, or 3 new branches at each generation. The sequence grows extremely rapidly due to combinatorial explosion.
FORMULA
a(0) = 1; for n >= 1, a(n) = Sum_{k=0..3} binomial(a(n-1), k)
MATHEMATICA
n = 7; NestList[Total@Binomial[#, Range[0, 3]] &, 1, n]
CROSSREFS
Sequence in context: A264832 A389181 A100528 * A378300 A132483 A153064
KEYWORD
nonn
AUTHOR
Dirk Broeders, Nov 02 2025
STATUS
approved