%I #52 Oct 11 2024 16:11:15
%S 1,1,3,4,4,6,7,7,9,10,10,12,13,13,15,16,16,18,19,19,21,22,22,24,25,25,
%T 27,28,28,30,31,31,33,34,34,36,37,37,39,40,40,42,43,43,45,46,46,48,49,
%U 49,51,52,52,54,55,55,57,58,58,60,61,61,63,64,64,66,67,67,69,70,70,72
%N Expansion of (1+2*x^2)/((1-x)*(1-x^3)).
%C Row sums of A116948.
%C Place n+2 equally-spaced points around a circle, labeled 0,1,2,...,n+1. For each i = 0..n+1 such that 2i != i mod n+2, draw an (undirected) chord from i to 2i mod n+2. Then a(n) is the number of distinct chords. - _Kival Ngaokrajang_, May 13 2016 (Edited by _N. J. A. Sloane_, Jun 23 2016)
%C From _Gus Wiseman_, Apr 19 2019: (Start)
%C Also the number of integer partitions of n + 2 with 1 fewer distinct multiplicities than (not necessarily distinct) parts. These are partitions of the form (x,x), (x,y), (x,x,y), or (x,y,y). For example, the a(0) = 1 through a(8) = 9 partitions are the following. The Heinz numbers of these partitions are given by A325270.
%C (11) (21) (22) (32) (33) (43) (44) (54) (55)
%C (31) (41) (42) (52) (53) (63) (64)
%C (211) (221) (51) (61) (62) (72) (73)
%C (311) (411) (322) (71) (81) (82)
%C (331) (332) (441) (91)
%C (511) (422) (522) (433)
%C (611) (711) (442)
%C (622)
%C (811)
%C (End)
%H Kival Ngaokrajang, <a href="/A117571/a117571.pdf">Illustration of initial terms</a>
%H Burkard Polster, <a href="https://www.youtube.com/watch?v=qhbuKbxJsk8">Times Tables, Mandelbrot and the Heart of Mathematics</a>, Mathologer video (2015).
%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,1,-1).
%F G.f.: (1+2*x^2)/((1-x)*(1-x^3)).
%F a(n) = a(n-1) + a(n-3) - a(n-4) for n>3.
%F a(n) = cos(2*Pi*n/3+Pi/6)/sqrt(3)-sin(2*Pi*n/3+Pi/6)/3+(3n+2)/3.
%F a(n) = Sum_{k=0..n} 2*A001045(L((n-k+2)/3)) where L(j/p) is the Legendre symbol of j and p.
%F a(n) = 1 + floor((n+1)/3) + floor(2*n/3). - _Wesley Ivan Hurt_, Jul 25 2016
%F a(n) = n+sign((n-1) mod 3). - _Wesley Ivan Hurt_, Sep 25 2017
%p A117571:=n->1 + floor(2*n/3) + floor((n+1)/3): seq(A117571(n), n=0..100); # _Wesley Ivan Hurt_, Jul 25 2016
%t CoefficientList[Series[(1 + 2 x^2)/((1 - x) (1 - x^3)), {x, 0, 71}], x] (* _Michael De Vlieger_, May 13 2016 *)
%o (Magma) [1 + Floor(2*n/3) + Floor((n+1)/3) : n in [0..100]]; // _Wesley Ivan Hurt_, Jul 25 2016
%Y Cf. A001045, A116948, A273724.
%Y Cf. A090858, A127002, A323055, A325242, A325243, A325244, A325270.
%K easy,nonn
%O 0,3
%A _Paul Barry_, Mar 29 2006