A369845 Number of compositions of 5*n into parts 3 and 5.
1, 1, 1, 2, 7, 22, 58, 138, 319, 750, 1810, 4427, 10828, 26349, 63862, 154603, 374521, 908140, 2203162, 5344988, 12964858, 31443013, 76253683, 184929945, 448506736, 1087774536, 2638209313, 6398479259, 15518219326, 37636240539, 91279009255, 221378866489
Offset: 0
Links
- Paolo Xausa, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (5,-10,11,-5,1).
Programs
-
Mathematica
LinearRecurrence[{5, -10, 11, -5, 1}, {1, 1, 1, 2, 7}, 50] (* Paolo Xausa, Mar 15 2024 *)
-
PARI
a(n) = sum(k=0, n\3, binomial(n+2*k, n-3*k));
Formula
a(n) = A052920(5*n).
a(n) = Sum_{k=0..floor(n/3)} binomial(n+2*k,n-3*k).
a(n) = 5*a(n-1) - 10*a(n-2) + 11*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: (1-x)^4/((1-x)^5 - x^3).