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.

A271897 Expansion of ( 1-2*x+3*x^2 ) / ( 1-4*x+5*x^2-4*x^3 ).

Original entry on oeis.org

1, 2, 6, 18, 50, 134, 358, 962, 2594, 6998, 18870, 50866, 137106, 369574, 996230, 2685474, 7239042, 19513718, 52601558, 141793810, 382222322, 1030326470, 2777369510, 7486734978, 20181398242, 54401396118, 146645533174, 395300745074, 1065580898898, 2872402002918, 7742906497478, 20871939570914
Offset: 0

Views

Author

R. J. Mathar, Apr 16 2016

Keywords

Comments

Sum of all second elements at level n of the TRIP-Stern sequence corresponding to the permutation triple (e,e,e)
Number of permutations of length n>0 avoiding the partially ordered pattern (POP) {1>4, 3>2} of length 4. That is, number of length n permutations having no subsequences of length 4 in which the first element is larger than the last element, and the third element is larger than the second one. - Sergey Kitaev, Dec 08 2020

Crossrefs

Cf. A000930 (maximum at level n).

Programs

  • Mathematica
    CoefficientList[Series[(1-2x+3x^2)/(1-4x+5x^2-4x^3),{x,0,40}],x] (* or *) LinearRecurrence[{4,-5,4},{1,2,6},40] (* Harvey P. Dale, Dec 27 2016 *)
  • PARI
    x='x+O('x^99); Vec((1-2*x+3*x^2)/(1-4*x+5*x^2-4*x^3)) \\ Altug Alkan, Apr 16 2016