OFFSET
1,3
COMMENTS
Each vertex of this tree has degree 5. If a vertex has at least 5 chips, the vertex fires, and one chip is sent to each neighbor. The root sends 1 chip to each of its four children and one chip to itself.
The order of the firings doesn't affect the number of firings.
This number of chips is interesting because the stable configuration has 1 chip for every vertex in the top n layers.
a(n) is partial sums of A014916.
For binary trees, the corresponding sequence is A045618.
For ternary trees, the corresponding sequence is A212337.
For 5-ary trees, the corresponding sequence is A378728.
a(2k-1) is divisible by 10.
LINKS
Wikipedia, Chip-firing game.
FORMULA
a(n) = ((3n - 5) 4^n + 3n + 5)/27.
MATHEMATICA
Table[((3 n - 5) 4^n + 3 n + 5)/27, {n, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tanya Khovanova and the MIT PRIMES STEP senior group, Dec 05 2024
STATUS
approved