A264613 Numbers n such that the Shevelev polynomial {m, n} has a root at m = -1.
2, 5, 8, 11, 23, 32, 47, 95, 128, 191, 383, 512, 767, 1535, 2048, 3071, 6143, 8192, 12287, 24575, 32768, 49151, 98303, 131072, 196607, 393215, 524288, 786431, 1572863, 2097152, 3145727, 6291455, 8388608
Offset: 1
Keywords
Links
- Vladimir Shevelev, On the Basis Polynomials in the Theory of Permutations with Prescribed Up-Down Structure, arXiv:0801.0072 [math.CO], 2007-2010. See Appendix.
- Vladimir Shevelev, The number of permutations with prescribed up-down structure as a function of two variables, INTEGERS, 12 (2012), #A1. (See Section 11, Problem 3.)
- V. Shevelev and J. Spilker, Up-down coefficients for permutations, Elemente der Mathematik, Vol. 68 (2013), no.3, 115-127.
Programs
-
Mathematica
upDown[n_, k_] := upDown[n, k] = Module[{t, m}, t = Flatten[ Reverse[ Position[ Reverse[ IntegerDigits[k, 2]], 1]]]; m = Length[t]; (-1)^m + Sum[upDown[t[[j]], k - 2^(t[[j]] - 1)]*Binomial[n, t[[j]]], {j, 1, m}]]; Reap[For[k = 2, k <= 2^15, k++, If[(upDown[n, k] /. n -> -1) == 0, Print[k]; Sow[k]]]][[2, 1]] (* Jean-François Alcover, Sep 06 2018 *)
Formula
Conjectured g.f.: (2 + x*(5 + x*(8 + x*(1 + (-2 - 8*x)* x)))) / (1 + x^3*(-5 + 4*x^3)). - Peter J. C. Moses, Dec 12 2015
Extensions
More terms (starting at a(6)) from Peter J. C. Moses, Dec 12 2015
Comments