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
KEYWORD
nonn
AUTHOR
Dirk Broeders, Nov 02 2025
STATUS
approved
