A344420 a(n) = floor(n/11).
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,0,0,0,0,1,-1).
Programs
-
Mathematica
Floor[Range[0, 100]/11] CoefficientList[Series[x^11/(x^12-x^11-x+1),{x,0,100}],x] (* or *) LinearRecurrence[{1,0,0,0,0,0,0,0,0,0,1,-1},{0,0,0,0,0,0,0,0,0,0,0,1},100] (* Harvey P. Dale, Aug 03 2021 *)
Formula
From Chai Wah Wu, May 18 2021: (Start)
a(n) = a(n-1) + a(n-11) - a(n-12) for n > 11.
G.f.: x^11/(x^12 - x^11 - x + 1). (End)
Comments