OFFSET
0,3
COMMENTS
For a guide to related sequences, see A211795.
LINKS
Bertrand Teguia Tabuguia, Hypergeometric-Type Sequences, arXiv:2401.00256 [cs.SC], 2023.
Bertrand Teguia Tabuguia, Computing with Hypergeometric-Type Terms, arXiv:2404.10143 [cs.SC], 2024.
Index entries for linear recurrences with constant coefficients, signature (1,2,-1,-2,-1,2,1,-1).
FORMULA
a(n) = a(n-1)+2*a(n-2)-a(n-3)-2*a(n-4)-a(n-5)+2*a(n-6)+a(n-7)-a(n-8).
G.f.: (x + 7*x^2 + 21*x^3 + 34*x^4 + 39*x^5 + 25*x^6 + 7*x^7)/(1 - x - 2* x^2 + x^3 + 2*x^4 + x^5 - 2*x^6 - x^7 + x^8).
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[Min[Abs[w - x], Abs[w - y]] == Min[Abs[x - y], Abs[x - z]],
s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 40]] (* A212579 *)
LinearRecurrence[{1, 2, -1, -2, -1, 2, 1, -1}, {0, 1, 8, 31, 80, 171, 308, 509}, 50]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 22 2012
STATUS
approved