A378728
The total number of fires in a rooted undirected infinite 5-ary tree with a self-loop at the root, when the chip-firing process starts with (5^n-1)/4 chips at the root.
Original entry on oeis.org
0, 1, 12, 98, 684, 4395, 26856, 158692, 915528, 5187989, 28991700, 160217286, 877380372, 4768371583, 25749206544, 138282775880, 739097595216, 3933906555177, 20861625671388, 110268592834474, 581145286560060, 3054738044738771, 16018748283386232, 83819031715393068
Offset: 1
- Yifan Xie, Table of n, a(n) for n = 1..1000
- Dillan Agrawal, Selena Ge, Jate Greene, Tanya Khovanova, Dohun Kim, Rajarshi Mandal, Tanish Parida, Anirudh Pulugurtha, Gordon Redwine, Soham Samanta, and Albert Xu, Chip-Firing on Infinite k-ary Trees, arXiv:2501.06675 [math.CO], 2025. See p. 16.
- Wikipedia, Chip-firing game.
- Index entries for linear recurrences with constant coefficients, signature (12,-46,60,-25).
A059045
Square array T(n,k) read by antidiagonals where T(0,k) = 0 and T(n,k) = 1 + 2k + 3k^2 + ... + n*k^(n-1).
Original entry on oeis.org
0, 1, 0, 1, 1, 0, 1, 3, 1, 0, 1, 6, 5, 1, 0, 1, 10, 17, 7, 1, 0, 1, 15, 49, 34, 9, 1, 0, 1, 21, 129, 142, 57, 11, 1, 0, 1, 28, 321, 547, 313, 86, 13, 1, 0, 1, 36, 769, 2005, 1593, 586, 121, 15, 1, 0, 1, 45, 1793, 7108, 7737, 3711, 985, 162, 17, 1, 0, 1, 55, 4097, 24604, 36409
Offset: 0
0, 0, 0, 0, 0, 0, 0, 0, 0, ...
1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1, 3, 5, 7, 9, 11, 13, 15, 17, ...
1, 6, 17, 34, 57, 86, 121, 162, 209, ...
1, 10, 49, 142, 313, 586, 985, 1534, 2257, ...
1, 15, 129, 547, 1593, 3711, 7465, 13539, 22737, ...
1, 21, 321, 2005, 7737, 22461, 54121, 114381, 219345, ...
1, 28, 769, 7108, 36409, 131836, 380713, 937924, 2054353, ...
A108283
Triangle read by rows, generated from (..., 3, 2, 1).
Original entry on oeis.org
1, 1, 3, 1, 5, 6, 1, 7, 17, 10, 1, 9, 34, 49, 15, 1, 11, 57, 142, 129, 21, 1, 13, 86, 313, 547, 321, 28, 1, 15, 121, 586, 1593, 2005, 769, 36, 1, 17, 162, 985, 3711, 7737, 7108, 1793, 45, 1, 19, 209, 1534, 7465, 22461, 36409, 24604, 4097, 55, 1, 21, 262, 2257, 13539, 54121, 131836, 167481, 83653, 9217, 66
Offset: 1
4th column = 10, 49, 142, 313, ... = f(x), x = 1, 2, 3; 4x^3 + 3x^2 + 2x + 1. f(3) = 142.
First few rows of the triangle:
1;
1, 3;
1, 5, 6;
1, 7, 17, 10;
1, 9, 34, 49, 15;
1, 11, 57, 142, 129, 21;
...
-
A108283 := proc(n,k)
local x ;
x := n-k+1 ;
add( i*x^(i-1),i=1..k) ;
end proc:
seq(seq( A108283(n,k),k=1..n),n=1..10) ; # R. J. Mathar, Sep 14 2016
-
T[, 1] := 1; T[n, n_] := n (n + 1)/2; T[n_, k_] := (1 - (n - k + 1)^k*(k^2 - k*n + 1))/(n - k)^2; Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 13 2016 *)
Showing 1-3 of 3 results.
Comments