OFFSET
0,2
COMMENTS
The sequence is constructed by a truncated version of Pascal's Triangle.
1
1 1
1 2 1
1 3 3 1
1 4 6 4
1 5 10 10 4
1 6 15 20 14
7 21 35 34 14
7 28 56 69 48
35 84 125 117 48
35 119 209 242 165
...
After truncation the sequence appears as the left vertical column. The right column sequence can be in A370051.
a(n) arises from the Gambler's Ruin problem and represents the number of ways a gambler is ruined after starting with $7 with a maximum $11 causing retirement.
LINKS
Index entries for linear recurrences with constant coefficients, signature (9,-28,35,-15,1).
FORMULA
a(n) = 9*a(n-1) - 28*a(n-2) + 35*a(n-3) - 15*a(n-4) + a(n-5).
MATHEMATICA
LinearRecurrence[{9, -28, 35, -15, 1}, {1, 7, 35, 154, 636}, 25] (* James C. McMahon, Mar 12 2024 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Morris, Feb 22 2024
STATUS
approved