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-5 of 5 results.

A202058 Number of ascent sequences avoiding the pattern 000.

Original entry on oeis.org

1, 1, 2, 4, 10, 27, 83, 277, 1015, 4007, 17047, 77451, 374889, 1923168, 10427250, 59544957, 357236992, 2245822801, 14762969601, 101264286082, 723499803180, 5375063821727, 41459660565329, 331546282841906, 2745163969235517, 23505333233440927, 207895424692608432
Offset: 0

Views

Author

N. J. A. Sloane, Dec 10 2011

Keywords

Comments

It appears that no formula or g.f. is known.

Crossrefs

Total number of ascent sequences is given by A022493. Number of ascent sequences avoiding 001 (and others) is A000079; 102 is A007051; 101 is A000108; 000 is A202058; 100 is A202059; 110 is A202060; 120 is A202061; 201 is A202062; 210 is A108304; 0123 is A080937; 0021 is A007317; 0000 is A317784.
Column k=2 of A294220.

Programs

  • Mathematica
    b[n_, i_, t_, p_, k_] := b[n, i, t, p, k] = If[n==0, 1, Sum[If[Coefficient[ p, x, j]==k, 0, b[n-1, j, t + If[j>i, 1, 0], p+x^j, k]], {j, 1, t+1}]];
    a[n_] := b[n, 0, 0, 0, Min[n, 2]];
    Table[Print["a(", n, ") = ", a[n]]; a[n], {n, 0, 17}] (* Jean-François Alcover, Sep 01 2018, after Alois P. Heinz in A294220 *)

Extensions

a(15)-a(17) from Alois P. Heinz, Nov 09 2012
a(18)-a(20) from Giovanni Resta, Jan 06 2014
a(21) from Vaclav Kotesovec, Aug 21 2018
a(22) from Vaclav Kotesovec, Aug 22 2018
More terms from Anthony Guttmann, Nov 04 2021

A202059 Number of ascent sequences avoiding the pattern 100.

Original entry on oeis.org

1, 1, 2, 5, 14, 44, 153, 583, 2410, 10721, 50965, 257393, 1374187, 7722862, 45520064, 280502924, 1802060232, 12040040899, 83475921469, 599400745354, 4449689901306, 34096169966924, 269286884243138, 2189193150557825, 18297258191472880, 157049750065028868
Offset: 0

Views

Author

N. J. A. Sloane, Dec 10 2011

Keywords

Comments

It appears that no formula or g.f. is known.

Crossrefs

Total number of ascent sequences is given by A022493. Number of ascent sequences avoiding 001 (and others) is A000079; 102 is A007051; 101 is A000108; 000 is A202058; 100 is A202059; 110 is A202060; 120 is A202061; 201 is A202062; 210 is A108304; 0123 is A080937; 0021 is A007317.

Extensions

Corrected a(7), was 383, but should be 583 according to Duncan-Steimgrimsson paper and independent computation. - Andrew Baxter, Jan 06 2014
a(0) and a(15)-a(21) from Alois P. Heinz, Jan 06 2014
a(22) from Alois P. Heinz, Oct 06 2014
a(23) from Alois P. Heinz, Apr 20 2016
More terms from Anthony Guttmann, Nov 04 2021

A202060 Number of ascent sequences avoiding the pattern 110.

Original entry on oeis.org

1, 1, 2, 5, 14, 43, 143, 510, 1936, 7774, 32848, 145398, 671641, 3227218, 16084747, 82955090, 441773793, 2424845273, 13695855478, 79485625385, 473393639992, 2889930405750, 18064609329598, 115513453404597, 754956282308784, 5039064184597772, 34323984497482559
Offset: 0

Views

Author

N. J. A. Sloane, Dec 10 2011

Keywords

Comments

It appears that no formula or g.f. is known.

Crossrefs

Total number of ascent sequences is given by A022493. Number of ascent sequences avoiding 001 (and others) is A000079; 102 is A007051; 101 is A000108; 000 is A202058; 100 is A202059; 110 is A202060; 120 is A202061; 201 is A202062; 210 is A108304; 0123 is A080937; 0021 is A007317.

Extensions

a(0) and a(15)-a(17) from Alois P. Heinz, Jan 07 2014
More terms from Anthony Guttmann, Nov 04 2021

A202061 Number of ascent sequences avoiding the pattern 120.

Original entry on oeis.org

1, 1, 2, 5, 14, 42, 133, 442, 1535, 5546, 20754, 80113, 317875, 1292648, 5374073, 22794182, 98462847, 432498659, 1929221610, 8728815103, 40017844229, 185727603829, 871897549029, 4137132922197, 19828476952117, 95934298966615, 468291607852143, 2305162065138433
Offset: 0

Views

Author

N. J. A. Sloane, Dec 10 2011

Keywords

Comments

It appears that no formula or g.f. is known.

Crossrefs

Total number of ascent sequences is given by A022493. Number of ascent sequences avoiding 001 (and others) is A000079; 102 is A007051; 101 is A000108; 000 is A202058; 100 is A202059; 110 is A202060; 120 is A202061; 201 is A202062; 210 is A108304; 0123 is A080937; 0021 is A007317.

Extensions

More terms from Anthony Guttmann, Nov 04 2021

A337526 Number of length n permutations that are sorted to the identity by a consecutive-213-avoiding stack followed by a classical-21-avoiding stack.

Original entry on oeis.org

1, 2, 5, 15, 50, 180, 686, 2731
Offset: 1

Views

Author

Kai Zheng, Aug 30 2020

Keywords

Examples

			For n = 3, the permutations 123, 213, 231, 312, and 321 are correctly sorted to the identity while the permutation 132 is not.
		

Crossrefs

Showing 1-5 of 5 results.