login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A182751 a(1)=1, a(2)=3, a(3)=6; a(n) = 3*a(n-2) for n > 3. 11

%I #31 Sep 08 2022 08:45:55

%S 1,3,6,9,18,27,54,81,162,243,486,729,1458,2187,4374,6561,13122,19683,

%T 39366,59049,118098,177147,354294,531441,1062882,1594323,3188646,

%U 4782969,9565938,14348907,28697814,43046721,86093442,129140163,258280326,387420489

%N a(1)=1, a(2)=3, a(3)=6; a(n) = 3*a(n-2) for n > 3.

%C For n >= 3: a(n) = the smallest number > a(n-1) such that ((a(n-2) + a(n-1))*(a(n-2) + a(n))*(a(n-1) + a(n)))/(a(n-2)*a(n-1)*a(n)) is integer (= 10 for n >= 4).

%C Number of necklaces with n-1 beads and 3 colors that are the same when turned over and hence have reflection symmetry. Example: For n=4 there are 9 necklaces with the colors A, B and C: AAA, AAB, AAC, ABB, ACC, BBB, BBC, BCC, CCC. The only necklaces without reflection symmetry are ABC and ACB. - _Herbert Kociemba_, Nov 24 2016

%H Harvey P. Dale, <a href="/A182751/b182751.txt">Table of n, a(n) for n = 1..1000</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (0,3).

%F a(n) = A038754(n) for n >= 2.

%F a(2*k) = (3/2)*a(2*k-1) for k >= 2, a(2*k+1) = 2*a(2*k).

%F G.f.: x*(1 + 3*x + 3*x^2)/(1 - 3*x^2). - _Herbert Kociemba_, Nov 24 2016

%e For n = 5; a(3) = 6, a(4) = 9, a(5) = 18 before ((6+9)*(6+18)*(9+18)) / (6*9*18) = 10.

%t Join[{1},RecurrenceTable[{a[2]==3,a[3]==6,a[n]==3a[n-2]},a[n],{n,50}]] (* or *) Transpose[NestList[{#[[2]],#[[3]],3#[[2]]}&,{1,3,6},49]][[1]] (* _Harvey P. Dale_, Oct 19 2011 *)

%t Rest@ CoefficientList[Series[x (1 + 3 x + 3 x^2)/(1 - 3 x^2), {x, 0, 34}], x] (* _Michael De Vlieger_, Nov 24 2016 *)

%t Join[{1}, LinearRecurrence[{0, 3}, {3, 6}, 30]] (* _Vincenzo Librandi_, Nov 25 2016 *)

%o (PARI) x='x+O('x^30); Vec(x*(1+3*x+3*x^2)/(1-3*x^2)) \\ _G. C. Greubel_, Jan 11 2018

%o (Magma) I:=[3,6]; [1] cat [n le 2 select I[n] else 3*Self(n-2): n in [1..30]]; // _G. C. Greubel_, Jan 11 2018

%Y Essentially the same as A038754 (cf. formula).

%Y Cf. A182752 - A182757.

%K nonn,easy,less

%O 1,2

%A _Jaroslav Krizek_, Nov 27 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 05:49 EDT 2024. Contains 371918 sequences. (Running on oeis4.)