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

A361353 Triangle read by rows: T(n,k) is the number of simple quasi series-parallel matroids on [n] with rank k, 1 <= k <= n.

Original entry on oeis.org

1, 0, 1, 0, 1, 1, 0, 0, 5, 1, 0, 0, 15, 16, 1, 0, 0, 0, 175, 42, 1, 0, 0, 0, 735, 1225, 99, 1, 0, 0, 0, 0, 16065, 6769, 219, 1, 0, 0, 0, 0, 76545, 204400, 32830, 466, 1, 0, 0, 0, 0, 0, 2747745, 2001230, 147466, 968, 1, 0, 0, 0, 0, 0, 13835745, 56143395, 16813720, 632434, 1981, 1
Offset: 1

Views

Author

Andrew Howroyd, Mar 09 2023

Keywords

Comments

See Table 2 in the Ferroni/Larson reference.

Examples

			Triangle begins:
  1;
  0, 1;
  0, 1,  1;
  0, 0,  5,   1;
  0, 0, 15,  16,     1;
  0, 0,  0, 175,    42,      1;
  0, 0,  0, 735,  1225,     99,     1;
  0, 0,  0,   0, 16065,   6769,   219,   1;
  0, 0,  0,   0, 76545, 204400, 32830, 466, 1;
  ...
		

Crossrefs

Row sums are A361354.

Programs

  • PARI
    \\ B gives A359985 as e.g.f.
    B(n)= {exp(x*(1+y) + y*intformal(serreverse(log(1 + x*y + O(x^n))/y + log(1 + x + O(x^n)) - x)))}
    T(n) = {[Vecrev(p/y) | p<-Vec(serlaplace(subst(B(n), x, log(1 + x + O(x*x^n)))/(1 + x) - 1))]}
    { my(A=T(9)); for(i=1, #A, print(A[i])) }

Formula

E.g.f.: A(x,y) = B(log(1 + x), y)/(1 + x) - 1 where B(x,y) is the e.g.f. of A359985.
Showing 1-1 of 1 results.