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.

User: Frether Getachew Kebede

Frether Getachew Kebede's wiki page.

Frether Getachew Kebede has authored 1 sequences.

A364849 Number of even parity alternating permutations of [1..n] starting with an odd integer.

Original entry on oeis.org

1, 1, 1, 1, 2, 6, 18, 72, 288, 1440, 7200, 43200, 259200, 1814400, 12700800, 101606400, 812851200, 7315660800, 65840947200, 658409472000, 6584094720000, 72425041920000, 796675461120000, 9560105533440000, 114721266401280000, 1491376463216640000
Offset: 1

Author

Keywords

Comments

a(n) is also the number of odd parity alternating permutations of [1..n] starting with an odd integer for n>2.

Examples

			For n=5, a(5)=6 because we have 12345, 14523, 34125, 32541, 52143, 54321.
		

Crossrefs

Cf. A010551.

Programs

  • PARI
    seq(n) = my(A=O(x*x^n)); Vec(serlaplace(1/(2-x) + acos(1-x^2/2+A)/(2*(2-x)*sqrt(1-x^2/4+A)) + x^2/4 + x/2 +1/2)) \\ Andrew Howroyd, Aug 10 2023

Formula

E.g.f.: 1/(2-x) + arccos(1-x^2/2)/(2*(2-x)*sqrt(1-x^2/4)) + x^2/4 + x/2 + 1/2.
a(n) = A010551(n)/2, for n>2.