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.

This page as a plain text file.
%I A361244 #9 Mar 11 2023 00:13:15
%S A361244 1,1,0,1,1,6,13,57,169,673,2301,8933,32747,127063,483484,1889957,
%T A361244 7352241,29003446,114481435,455542880,1816976042,7285391071,
%U A361244 29291855748,118218771203,478372112363,1941436590561,7897802784418,32205683248225,131602039333873
%N A361244 Number of noncrossing bridgeless cacti with n nodes.
%H A361244 Andrew Howroyd, <a href="/A361244/b361244.txt">Table of n, a(n) for n = 0..500</a>
%H A361244 Wikipedia, <a href="https://en.wikipedia.org/wiki/Cactus_graph">Cactus graph</a>.
%H A361244 <a href="/index/Ca#cacti">Index entries for sequences related to cacti</a>.
%F A361244 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).
%o A361244 (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))}
%Y A361244 Cf. A003168, A361242, A361245.
%K A361244 nonn
%O A361244 0,6
%A A361244 _Andrew Howroyd_, Mar 08 2023