A212964 Number of (w,x,y) with all terms in {0,...,n} and |w-x| < |x-y| < |y-w|.
0, 0, 0, 2, 6, 14, 26, 44, 68, 100, 140, 190, 250, 322, 406, 504, 616, 744, 888, 1050, 1230, 1430, 1650, 1892, 2156, 2444, 2756, 3094, 3458, 3850, 4270, 4720, 5200, 5712, 6256, 6834, 7446, 8094, 8778, 9500, 10260, 11060, 11900, 12782, 13706
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Jean-Luc Baril, Alexander Burstein, and Sergey Kirgizov, Pattern statistics in faro words and permutations, arXiv:2010.06270 [math.CO], 2020.
- Ikuko Hamamoto, One-particle motion in nuclear many-body problem, Division of Mathematical Physics, LTH, University of Lund, Sweden.
- Index entries for linear recurrences with constant coefficients, signature (3,-2,-2,3,-1).
Crossrefs
Programs
-
Magma
[(2*n-1)*(2*n^2-2*n-3)/24 - (-1)^n/8: n in [0..50]]; // Vincenzo Librandi, Jul 25 2014
-
Maple
A212964:=n->add(floor(i^2/2) - 2*floor(i/2), i=1..n): seq(A212964(n), n=0..50); # Wesley Ivan Hurt, Jul 23 2014
-
Mathematica
t = Compile[{{n, _Integer}}, Module[{s = 0}, (Do[If[Abs[w - x] < Abs[x - y] < Abs[y - w], s = s + 1], {w, 0, n}, {x, 0, n}, {y, 0, n}]; s)]]; m = Map[t[#] &, Range[0, 45]] (* A212964 *) m/2 (* essentially A002623 *) CoefficientList[Series[2 x^3/((1 + x) (1 - x)^4), {x, 0, 50}], x] (* Vincenzo Librandi, Jul 25 2014 *)
-
PARI
a(n) = (2*n-1)*(2*n^2-2*n-3)/24 - (-1)^n/8; vector (100, n, a(n-1)) \\ Altug Alkan, Sep 30 2015
Formula
a(n) = 3*a(n-1)-2*a(n-2)-2*a(n-3)+3*a(n-4)-a(n-5).
G.f.: f(x)/g(x), where f(x)=2*x^3 and g(x)=(1+x)(1-x)^4.
a(n+3) = 2*A002623(n).
a(n) = Sum_{k=0..n} floor((k-1)^2/2). - Enrique Pérez Herrero, Dec 28 2013
a(n) = Sum_{i=1..n} floor(i^2/2) - 2*floor(i/2). - Wesley Ivan Hurt, Jul 23 2014
a(n) = (2*n-1)*(2*n^2-2*n-3)/24 - (-1)^n/8. - Robert Israel, Jul 23 2014
E.g.f.: (x*(2*x^2 + 3*x - 3)*cosh(x) + (2*x^3 + 3*x^2 - 3*x + 3)*sinh(x))/12. - Stefano Spezia, Jul 06 2021
Comments