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.

A340569 Total number of consecutive triples matching the pattern 123 in all faro permutations of length n.

Original entry on oeis.org

0, 0, 0, 1, 4, 10, 24, 53, 116, 246, 520, 1082, 2248, 4628, 9520, 19469, 39796, 81022, 164904, 334670, 679064, 1374924, 2783440, 5625666, 11368904, 22945820, 46307664, 93358228, 188202256, 379078952, 763506784, 1536708413, 3092806516, 6220970702, 12512656744, 25154958278
Offset: 0

Views

Author

Sergey Kirgizov, Jan 12 2021

Keywords

Comments

Faro permutations are permutations avoiding the three consecutive patterns 231, 321 and 312. They are obtained by a perfect faro shuffle of two nondecreasing words of lengths differing by at most one.

Examples

			For n = 4, there are 6 faro permutations: 1234, 1243, 1324, 2134, 2143, 3142. They contain in total 4 consecutive patterns 123.
		

Crossrefs

A001405 counts faro permutations of length n.

Programs

  • Mathematica
    Table[SeriesCoefficient[x*(1+2*x)*(1-Sqrt[1-4*x^2])/((1-2*x) * (1+Sqrt[1-4*x^2])),{x,0,n}],{n,0,35}] (* Stefano Spezia, Jan 12 2021 *)

Formula

G.f.: x * (1+2*x) * (1-sqrt(1-4*x^2)) / ((1-2*x) * (1+sqrt(1-4*x^2))).