The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A320524 Number of chiral pairs of a row of n colors using 6 or fewer colors. 3
0, 15, 90, 630, 3780, 23220, 139320, 839160, 5034960, 30229200, 181375200, 1088367840, 6530207040, 39181942080, 235091652480, 1410554113920, 8463324683520, 50779973295360, 304679839772160, 1828079189798400, 10968475138790400, 65810851739735040, 394865110438410240, 2369190668072417280, 14215144008434503680, 85290864083258757120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A chiral row is different from its reverse.
LINKS
FORMULA
a(n) = (k^n - k^ceiling(n/2)) / 2, where k=6 is maximum number of colors.
G.f.: k*x^2*(k-1) / (2*(1-k*x)*(1-k*x^2)), where k=6.
a(n) = (A000400(n) - A056452(n)) / 2 = A000400(n) - A056308(n) = A056308(n) - A056452(n).
EXAMPLE
For a(2)=15, the chiral pairs are the fifteen combinations of six colors taken two at a time, e.g., AB-BA.
MATHEMATICA
k = 6; Table[(k^n - k^Ceiling[n/2])/2, {n, 1, 30}]
LinearRecurrence[{6, 6, -36}, {0, 15, 90}, 30]
PROG
(Magma) [(6^n - 6^Ceiling(n / 2)) / 2: n in [1..25]]; // Vincenzo Librandi, Oct 15 2018
(PARI) m=40; v=concat([0, 15, 90], vector(m-3)); for(n=4, m, v[n] = 6*v[n-1] +6*v[n-2] -36*v[n-3]); v \\ G. C. Greubel, Oct 17 2018
CROSSREFS
Column 6 of A293500.
Cf. A000400 (oriented), A056308 (unoriented), A056452 (achiral).
Sequence in context: A292055 A263628 A263629 * A218408 A048630 A326148
KEYWORD
easy,nonn
AUTHOR
Robert A. Russell, Oct 14 2018
STATUS
approved

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 May 28 22:13 EDT 2024. Contains 372921 sequences. (Running on oeis4.)