cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A321220 a(n) = n+2 if n is even, otherwise a(n) = 2*n+1 if n is odd.

This page as a plain text file.
%I A321220 #31 Sep 08 2022 08:46:23
%S A321220 2,3,4,7,6,11,8,15,10,19,12,23,14,27,16,31,18,35,20,39,22,43,24,47,26,
%T A321220 51,28,55,30,59,32,63,34,67,36,71,38,75,40,79,42,83,44,87,46,91,48,95,
%U A321220 50,99,52,103,54,107,56,111,58,115,60,119,62,123,64,127,66
%N A321220 a(n) = n+2 if n is even, otherwise a(n) = 2*n+1 if n is odd.
%C A321220 For n >= 3, a(n) is the Harborth Constant for the Dihedral groups D2n. See Balachandra link, Theorem 1 p. 2.
%H A321220 Colin Barker, <a href="/A321220/b321220.txt">Table of n, a(n) for n = 0..1000</a>
%H A321220 Niranjan Balachandran, Eshita Mazumdar, Kevin Zhao, <a href="https://arxiv.org/abs/1803.08286">The Harborth Constant for Dihedral Groups</a>, arXiv:1803.08286 [math.CO], 2018.
%H A321220 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (0,2,0,-1).
%F A321220 a(n) = A043547(n+1) + 1.
%F A321220 From _Colin Barker_, Oct 31 2018: (Start)
%F A321220 G.f.: (2 + 3*x + x^3) / (1-x^2)^2.
%F A321220 a(n) = 2*a(n-2) - a(n-4) for n > 3.
%F A321220 (End)
%p A321220 a:=n->`if`(modp(n,2)=0,n+2,2*n+1): seq(a(n),n=0..70); # _Muniru A Asiru_, Oct 31 2018
%t A321220 CoefficientList[Series[(2 + 3 x + x^3)/(1 - x^2)^2, {x, 0, 64}], x] (* _Michael De Vlieger_, Oct 31 2018 *)
%t A321220 Table[If[OddQ[n], (2 n + 1), n + 2], {n, 0, 80}] (* _Vincenzo Librandi_, Nov 01 2018 *)
%o A321220 (PARI) a(n) = if (n%2, 2*n+1, n+2);
%o A321220 (PARI) Vec((2 + 3*x + x^3) / ((1 - x)^2*(1 + x)^2) + O(x^80)) \\ _Colin Barker_, Oct 31 2018
%o A321220 (Magma) [IsOdd(n) select (2*n+1) else n+2: n in [0..80]]; // _Vincenzo Librandi_, Nov 01 2018
%Y A321220 A299174 and A004767 interleaved.
%Y A321220 Cf. A043547, A114752.
%K A321220 nonn,easy
%O A321220 0,1
%A A321220 _Michel Marcus_, Oct 31 2018