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.

A361244 Number of noncrossing bridgeless cacti with n nodes.

Original entry on oeis.org

1, 1, 0, 1, 1, 6, 13, 57, 169, 673, 2301, 8933, 32747, 127063, 483484, 1889957, 7352241, 29003446, 114481435, 455542880, 1816976042, 7285391071, 29291855748, 118218771203, 478372112363, 1941436590561, 7897802784418, 32205683248225, 131602039333873
Offset: 0

Views

Author

Andrew Howroyd, Mar 08 2023

Keywords

Crossrefs

Programs

  • PARI
    seq(n)={my(g=1+O(x)); for(n=1, n\2, g=1/(1 - x^2*g^4/(1 - x*g^2))); Vec(1 + x*g + O(x*x^n))}

Formula

G.f. 1 + A(x) where A(x) satisfies A(x) = x^2*(x - A(x)^2)/(x^2 - x*A(x)^2 - A(x)^4).