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!)
A257198 Number of permutations of length n having exactly one descent such that the first element of the permutation is an odd number. 1
0, 0, 2, 6, 16, 36, 78, 162, 332, 672, 1354, 2718, 5448, 10908, 21830, 43674, 87364, 174744, 349506, 699030, 1398080, 2796180, 5592382, 11184786, 22369596, 44739216, 89478458, 178956942, 357913912, 715827852, 1431655734, 2863311498, 5726623028 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = 2*floor((2*2^n-3*n-1)/6).
a(n) = 2*A178420(n-1).
a(n) = A000295(n)-A000975(n-1).
From Colin Barker, Apr 19 2015: (Start)
a(n) = (-3-(-1)^n+2^(2+n)-6*n)/6.
a(n) = 3*a(n-1)-a(n-2)-3*a(n-3)+2*a(n-4).
G.f.: -2*x^3 / ((x-1)^2*(x+1)*(2*x-1)).
(End)
EXAMPLE
a(3)=2: (1 3 2, 3 1 2).
a(4)=6: (1 2 4 3, 1 3 2 4, 1 4 2 3, 1 3 4 2, 3 1 2 4, 3 4 1 2).
MATHEMATICA
Table[2 Floor[(2 2^n - 3 n - 1) / 6], {n, 50}] (* Vincenzo Librandi, Apr 18 2015 *)
PROG
(Magma) [2*Floor((2*2^n-3*n-1)/6): n in [1..40]]; // Vincenzo Librandi, Apr 18 2015
(PARI) concat([0, 0], Vec(-2*x^3/((x-1)^2*(x+1)*(2*x-1)) + O(x^100))) \\ Colin Barker, Apr 19 2015
(PARI) a(n)=(2<<n-3*n-1)\6*2 \\ Charles R Greathouse IV, Apr 21 2015
CROSSREFS
Cf. A178420, A000295, A000975, A167030 (first differences).
Sequence in context: A270810 A366098 A227035 * A053210 A066641 A265106
KEYWORD
nonn,easy
AUTHOR
Ran Pan, Apr 18 2015
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 14 23:22 EDT 2024. Contains 372535 sequences. (Running on oeis4.)