OFFSET
1,2
COMMENTS
a(n) the number of subsets of {3, 6, 9, 12, ..., 3*n} that are Schreier and contain 3*n.
LINKS
Hùng Việt Chu and Zachary Louis Vasseur, Schreier sets of multiples of an integer, linear recurrence, and Pascal triangle, arXiv:2506.14312 [math.CO], 2025. See Table 1 p. 2.
Hùng Việt Chu and Zachary Louis Vasseur, Linear Recurrences of Generalized Schreier Sets Revisited, Journal of Integer Sequences, Vol. 29 (2026), Article 26.2.2. See p. 3.
Index entries for linear recurrences with constant coefficients, signature (3,-3,1,1).
FORMULA
a(n) = 2 + Sum_{i=1..n-2} Sum_{j=0..3i-2} binomial(n-i-1,j), for n > 1.
a(n) = A079398(3*n).
G.f.: x*(1 - x + x^2)/(1 - 3*x + 3*x^2 - x^3 - x^4).
MATHEMATICA
LinearRecurrence[{3, -3, 1, 1}, {1, 2, 4, 7}, 38 ] (* or *) Rest[CoefficientList[Series[x*(1 - x + x^2)/(1 - 3*x + 3*x^2 - x^3 - x^4), {x, 0, 38}], x]] (* or *) a[1]=1; a[n_]:=2 + Sum[Binomial[n-i-1, j], {i, n-2} , {j, 0, 3i-2} ]; Array[a, 38] (* James C. McMahon, Jun 24 2025 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Hung Viet Chu, Jun 18 2025
STATUS
approved
