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.

Showing 1-4 of 4 results.

A224288 Number of permutations of length n containing exactly 2 occurrences of 123 and 2 occurrences of 132.

Original entry on oeis.org

0, 0, 0, 0, 1, 6, 26, 94, 306, 934, 2732, 7752, 21488, 58432, 156288, 411904, 1071104, 2750976, 6984704, 17545216, 43634688, 107511808, 262602752, 636223488, 1529741312, 3652059136, 8660975616, 20412104704, 47826599936, 111446851584, 258360737792, 596044152832
Offset: 0

Views

Author

Brian Nakamura, Apr 03 2013

Keywords

Examples

			a(4) = 1: (1,2,4,3).
a(5) = 6: (2,3,5,1,4), (2,3,5,4,1), (2,5,1,3,4), (3,1,4,5,2), (4,1,2,5,3), (5,1,2,4,3).
		

Crossrefs

Programs

  • Maple
    # Programs can be obtained from the Nakamura link
  • Mathematica
    Join[{0, 0, 0, 0, 1}, LinearRecurrence[{10, -40, 80, -80, 32}, {6, 26, 94, 306, 934}, 27]] (* Jean-François Alcover, Feb 29 2020 *)

Formula

G.f.: -(2*x^5+6*x^4-6*x^3+6*x^2-4*x+1)*x^4/(2*x-1)^5. - Alois P. Heinz, Apr 03 2013
a(n) = 2^(-11+n)*(1504-994*n+219*n^2-18*n^3+n^4) for n>4. - Colin Barker, Apr 14 2013

A224290 Number of permutations of length n containing exactly 3 occurrences of 123 and 3 occurrences of 132.

Original entry on oeis.org

0, 0, 0, 0, 0, 1, 6, 30, 136, 566, 2176, 7808, 26440, 85332, 264632, 793792, 2315136, 6592640, 18390784, 50392064, 135921664, 361536512, 949708800, 2466807808, 6342115328, 16153509888, 40790523904, 102186352640, 254105092096, 627533152256, 1539764125696
Offset: 0

Views

Author

Brian Nakamura, Apr 03 2013

Keywords

Examples

			a(5) = 1: (1,4,3,2,5).
a(6) = 6: (2,5,4,3,1,6), (2,5,4,3,6,1), (3,5,1,4,6,2), (3,6,1,4,2,5), (5,1,4,3,2,6), (6,1,4,3,2,5).
		

Crossrefs

Programs

  • Maple
    # Programs can be obtained from the Nakamura link
  • Mathematica
    Join[{0, 0, 0, 0, 0, 1, 6}, LinearRecurrence[{14, -84, 280, -560, 672, -448, 128}, {30, 136, 566, 2176, 7808, 26440, 85332}, 33]] (* Jean-François Alcover, Nov 28 2018 *)
  • PARI
    concat([0,0,0,0,0], Vec(x^5*(1 - 8*x + 30*x^2 - 60*x^3 + 62*x^4 - 36*x^5 + 24*x^6 - 8*x^7 + 4*x^8) / (1 - 2*x)^7 + O(x^40))) \\ Colin Barker, Nov 28 2018

Formula

G.f.: -(4*x^8-8*x^7+24*x^6-36*x^5+62*x^4-60*x^3+30*x^2-8*x+1)*x^5 / (2*x-1)^7. - Alois P. Heinz, Apr 03 2013
From Colin Barker, Nov 28 2018: (Start)
a(n) = (1/9)*2^(n-15) * (307008 - 247512*n + 78118*n^2 - 12087*n^3 + 937*n^4 - 33*n^5 + n^6) for n>6.
a(n) = 14*a(n-1) - 84*a(n-2) + 280*a(n-3) - 560*a(n-4) + 672*a(n-5) - 448*a(n-6) + 128*a(n-7) for n>13.
(End)

A224289 Number of permutations of length n containing exactly 1 occurrence of 123 and 2 occurrences of 132.

Original entry on oeis.org

0, 0, 0, 2, 8, 26, 79, 232, 664, 1856, 5072, 13568, 35584, 91648, 232192, 579584, 1427456, 3473408, 8359936, 19922944, 47054848, 110231552, 256311296, 591921152, 1358430208, 3099590656, 7034896384, 15888023552, 35718692864, 79960211456, 178291474432, 396076515328, 876844417024
Offset: 1

Views

Author

Brian Nakamura, Apr 03 2013

Keywords

Crossrefs

Programs

  • Maple
    # Programs can be obtained from author's personal website.
  • Mathematica
    LinearRecurrence[{8,-24,32,-16},{0,0,0,2,8,26,79},40] (* Harvey P. Dale, Jun 23 2017 *)

Formula

a(n) = 2^(-8+n)*(-136+70*n-11*n^2+n^3) for n>3. G.f.: -x^4*(x^3-10*x^2+8*x-2) / (2*x-1)^4. - Colin Barker, Apr 14 2013

A224291 Number of permutations of length n containing exactly 4 occurrences of 123 and 4 occurrences of 132.

Original entry on oeis.org

0, 0, 0, 0, 1, 11, 60, 270, 1084, 4028, 14144, 47577, 154740, 489728, 1514786, 4593118, 13682374, 40106060, 115824376, 329901232, 927585696, 2576685888, 7076644480, 19228648192, 51725149184
Offset: 1

Views

Author

Brian Nakamura, Apr 03 2013

Keywords

Crossrefs

Programs

  • Maple
    # Programs can be obtained from author's personal website.
Showing 1-4 of 4 results.